imx6 Rex EMC testing Content

Size: px
Start display at page:

Download "imx6 Rex EMC testing Content"

Transcription

1 imx6 Rex EMC testing (including the script examples) Here you can find the setup, scripts and results of imx6 Rex EMC testing. Content 1. Hardware configuration 2. Test description 3. Test results Radiated emission 4. Test results Conducted emission APPENDIX 5. How to prepare the test outline 6. Standard test 7. Heavy test 1. Hardware configuration

2 Connected cables/devices Power jack: +12V from an isolated source SD card 1 (the one on the PCB edge): preloaded with Filesystem and used for booting SD card 2 (the one under heatsink): used for read/write testing RTC Battery: inserted in the holder Ethernet: Ethernet loopback cable connected. Forced to 100Mb and used for ping test. HDMI monitor: during the test, the monitor is connected but turned off. 2x USB memory stick: each connected through an extension cable. Both used during read/write test. RS232: a null modem cable connected. During the test, the cable was terminated with an RS232 to USB converter. SATA CFAST card (without the metal card holder): used for read/write testing Headphones & Microphone: standard headphones connected to the headphones and microphone jack Audio loopback: a cable connected between Line in and Line out Wifi PCIE mini card: inserted, but not actively used. No antennas connected. Modem: inserted, but not actively used. No antennas connected, no SIM card inserted. back to top

3 2. Test description The goal of this test was to check Radiated and Conducted emission of imx6 Rex board while running at very high load. What was running: CPU stress test Memory stress test GPU stress test (running a Full HD graphics test at rate 150 frames per second) Linux GUI Playing a video file Playing an audio file SD card test (SD card read & write stress test) 2x USB test (USB memory stick read & write stress test) SATA test (CFAST SSD card read & write stress test) Ethernet ping 3. Test Results - Radiated emission *Note: Tested for EN55022B Vertical polarization Running Linux Only back to top

4 Vertical polarization Heavy Testing

5 Horizontal polarization Running Linux Only

6 Horizontal polarization Heavy Testing back to top

7 4. Test Results - Conducted emission *Note: tested with VEP36US12 AC Adaptor Power cable L1 Heavy Testing (page 1)

8 Power cable L1 Heavy Testing (page 2)

9 Power cable N Heavy Testing (page 1)

10 Power cable N Heavy Testing (page 2) back to top

11 Appendix 5. How to prepare the test 1. Download this file system (created based on Jasbirs blog), download this kernel and follow these steps to prepare SD card. 2. Insert the SD card to the edge SD card slot. 3. Update the u-boot to boot up from SD card and set few other parameters: > setenv bootargs_mmc 'setenv bootargs ${bootargs} ip= ::: root=/dev/mmcblk1p1 rootwait vmalloc=400m fbmem=28m fbcon=28m' > setenv bootcmd_mmc 'run bootargs_mmc ; mmc dev 1; ext2load mmc 1 0x imx6rex-uimage-gpu-en-audio-fix-03-apr ; bootm 0x ' > saveenv 4. Run test scripts (they are included in the file system, or you can download them here: Download Standard Test or Download Heavy Test). As script parameters use the directories where the devices are mapped (without /dev/)./name-of-the-test.sh SATA_DIR USB0_DIR USB1_DIR MMC0_DIR Here are examples how to run the scripts (in this example /dev/mmcblk1p1 is a filesystem device): #./emc-test1.sh sda1 sdb1 sdc1 mmcblk0p1 and the heavy test #./emc-test-all.sh sda1 sdb1 sdc1 mmcblk0p1

12 *Note: you may need to check where your devices are mounted. Use fdisk -l. Here is an example: # fdisk -l Disk /dev/sda: 7998 MB, bytes 108 heads, 63 sectors/track, 2296 cylinders, total sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x001c2022 Device Boot Start End Blocks Id System /dev/sda Linux Disk /dev/mmcblk0: 3904 MB, bytes 4 heads, 16 sectors/track, cylinders, total sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0xc44e7f69 Device Boot Start End Blocks Id System /dev/mmcblk0p Linux Disk /dev/mmcblk1: 1977 MB, bytes 61 heads, 62 sectors/track, 1021 cylinders, total sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x Device Boot Start End Blocks Id System /dev/mmcblk1p Linux Disk /dev/sdb: 16.2 GB, bytes 256 heads, 48 sectors/track, 2578 cylinders, total sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0xc3072e18 Device Boot Start End Blocks Id System /dev/sdb FAT16

13 Disk /dev/sdc: 16.0 GB, bytes 255 heads, 63 sectors/track, 1946 cylinders, total sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x Device Boot Start End Blocks Id System /dev/sdc c W95 FAT32 (LBA) back to top 6. The Standard test script #!/bin/sh mountdevice() { mount /dev/$1 /media/$2 cat /etc/mtab grep -F "/dev/$1 /media/$2" if [ "$?" -eq "0" ]; then echo "$2 mounted" else echo "$2 not mounted"; exit 2 fi } # mount devices a test a status mountdevice $1 sata mountdevice $2 usb0 mountdevice $3 usb1 mountdevice $4 mmc0 # tell the X applications where they should run export DISPLAY=:0 # run X window - wait for the procces service lightdm start # connect ethernet loopback and force the ethernet to 100Mbit mii-tool -F 100baseTx-HD # play a video file in an infinite loop

14 echo 0 > /sys/class/graphics/fb2/blank sudo -u "ubuntu" xfce4-terminal --geometry=70x x mplayer -vo fbdev2:/dev/fb2 -vf scale -zoom -loop 0 -xy 1024 /home/ubuntu/clou$ # ping sudo -u "ubuntu" xfce4-terminal --geometry=70x x ping & # top sudo -u "ubuntu" xfce4-terminal --geometry=90x x top & proceed=1 file1="blackbird.wav" while [ $proceed -eq 1 ] do cp1_done=`ps cax grep $cp1_pid grep cp` if [ -z "$cp1_done" ]; then # run cp only if previous cp is done cp /media/usb0/$file1 /media/sata & cp1_pid=$! echo "started cp from usb0 to sata" fi cp2_done=`ps cax grep $cp2_pid grep cp` if [ -z "$cp2_done" ]; then # run cp only if previous cp is done cp /media/usb1/$file1 /media/mmc0 & cp2_pid=$! echo "started cp from usb1 to mmc0" fi aud_done=`ps cax grep $aud_pid grep aplay` if [ -z "$aud_done" ]; then aplay -D hw:0,0 /home/ubuntu/blackbird.wav & aud_pid=$! echo "started play audio" fi done # kill all procceses if Ctrl+C detected trap '$precced=0; kill $cp1_pid $cp2_pid &aud_pid;' 2 sleep back to top

15 7. The Heavy test script #!/bin/sh mountdevice() { mount /dev/$1 /media/$2 cat /etc/mtab grep -F "/dev/$1 /media/$2" if [ "$?" -eq "0" ]; then echo "$2 mounted" else echo "$2 not mounted"; exit 2 fi } # mount devices a test a status mountdevice $1 sata mountdevice $2 usb0 mountdevice $3 usb1 mountdevice $4 mmc0 # tell the X applications where they should run export DISPLAY=:0 # run X windows - wait for the procces service lightdm start # connect Ethernet loopback and force the ethernet to 100Mbit mii-tool -F 100baseTx-HD # gpu test cd /root/gpu-viv-bin-mx6q hfp/opt/viv_samples/vdk./tutorial7 & gpu_pid=$! cd # play a video file on the lvds display echo 0 > /sys/class/graphics/fb2/blank mplayer -vo fbdev2:/dev/fb2 -vf scale -zoom -loop 0 -xy really-quiet /home/ubuntu/clouds.avi & vid_pid=$! # stressapptest - testing sata, 2x usb, sd card, 1 thread CPU, 1 thread memory stressapptest -f /media/sata/tmp-file1 -f /media/usb0/tmp-file1 -f /media/usb1/tmp-file1 -f /media/mmc0/tmp-file1 -s M 50

16 -m 1 $ str_pid=$! echo "Stressapptest: " $str_pid # play a audio file mplayer -loop 0 -really-quiet /home/ubuntu/blackbird.wav & aud_pid=$! # ping ping & ping_pid=$! # top top top_pid=$! # kill all procceses if Ctrl+C detected trap '$procced=0; kill $gpu_pid $vid_pid $aud_pid $str_pid $ping_pid;' 2 sleep Note: If the LVDS monitor is not included in the setup comment out these lines: #echo 0 > /sys/class/graphics/fb2/blank #mplayer -vo fbdev2:/dev/fb2 -vf scale -zoom -loop 0 -xy really-quiet /home/ubuntu/clouds.avi & Add this line (to disable LVDS): # echo 1 > /sys/class/graphics/fb2/blank back to top

Getting Started with BeagleBoard xm

Getting Started with BeagleBoard xm Getting Started with BeagleBoard xm by Getting Started with BeagleBoard-xM 1. Beagleboard-xM BeagleBoard.org ก Texas Instruments DM3730 1 GHz ก ARM Cortex-A8 (DSP) (PowerVR) (RAM) 512 MB Serial Port, USB

More information

Q7M EVK (Q7M120

Q7M EVK (Q7M120 Q7M120-120-EVK (Q7M120 and Q7B120) BSP Linux User s Manual Disclaimers This manual has been carefully checked and believed to contain accurate information. Axiomtek Co., Ltd. assumes no responsibility

More information

Downloaded from: justpaste.it/o09s

Downloaded from: justpaste.it/o09s Downloaded from: justpaste.it/o09s Pogoplug:~$ cat /proc/cpuinfo Processor : ARM926EJ-S rev 1 (v5l) BogoMIPS : 1192.75 Features : swp half thumb fastmult edsp CPU implementer : 0x56 CPU architecture: 5TE

More information

User s Manual for the Boundary Devices Nitrogen R board

User s Manual for the Boundary Devices Nitrogen R board 1 User s Manual for the Boundary Devices Nitrogen R board July 6, 2010 2 1 Revision History Date Revision Description 2010-06-17 1.0 First (rough) draft 2010-06-25 1.1 Still rough. Additional details on

More information

Tutorial : Confguring a micro SD memory card as both swap and storage area for the DragonBoard 410c (DB410C)

Tutorial : Confguring a micro SD memory card as both swap and storage area for the DragonBoard 410c (DB410C) Tutorial : Confguring a micro SD memory card as both swap and storage area for the DragonBoard 410c (DB410C) [1] Introduction The unboxing experience of the DragonBoard 410c is very enjoyable and straightforward.

More information

i.mx53 START Linux User s Guide

i.mx53 START Linux User s Guide i.mx53 START Linux User s Guide Document Number: 924-76373 Rev. 11.09.01 0 9/2011 How to Reach Us: Home Page: www.freescale.com Web Support: http://www.freescale.com/support USA/Europe or Locations Not

More information

Matrix. Get Started Guide

Matrix. Get Started Guide Matrix Get Started Guide Overview Matrix is a single board mini computer based on ARM with a wide range of interface, equipped with a powerful i.mx6 Freescale processor, it can run Android, Linux and other

More information

Windows Method Using Linux Live CD and Gparted

Windows Method Using Linux Live CD and Gparted Contents 1 Formatting and Partitioning USB Storage for DD-WRT 2 Windows Method Using Linux Live CD and Gparted 2.1 Linux Command Line Method 3 Formatting the /opt, /jffs and Data Partitions, and preparing

More information

Error Creating Partition Table Helper Exited With Exit Code 1

Error Creating Partition Table Helper Exited With Exit Code 1 Error Creating Partition Table Helper Exited With Exit Code 1 So I try to create MSDOS partition table but it says: every option, its showing some error like: Error creating partition table: helper exited

More information

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University

Operating System. Hanyang University. Hyunmin Yoon Operating System Hanyang University Hyunmin Yoon (fulcanelli86@gmail.com) 2 ubuntu Linux Download https://www.ubuntu.com/download/desktop http://gofile.me/3qiyp/pj6fzmojf 2 3 VMware Workstation Player (optional) Download https://www.vmware.com/products/workstation-player/workstation-player-evaluation.html

More information

fit-pc Intense 2 Overview

fit-pc Intense 2 Overview specifications Specifications: Overview is the second generation of the acclaimed miniature fanless PC, and further improves the best-in-class features of its predecessor with 4 th and 5 th generations

More information

Cross-compilation with Buildroot

Cross-compilation with Buildroot Instituto Superior de Engenharia do Porto Mestrado em Engenharia Eletrotécnica e de Computadores Arquitetura de Computadores Cross-compilation with Buildroot Introduction Buildroot is a tool that can be

More information

LTIB for i.mx28, a step-by-step guide

LTIB for i.mx28, a step-by-step guide LTIB for i.mx28, a step-by-step guide Note: This guide shows how to get a target system building and running on an i.mx28 EVK board. Install LTIB Configure and build First time configuration LTIB configuration

More information

0B specifications 1B

0B specifications 1B 0B 1Bspecifications fit-pc 4 fit-pc4 Specifications2 Overview Using AMD's latest G-Series 'Jaguar' Quad Core System-on-Chip (SoC), Fit PC4 is the next generation to be introduced within the already popular

More information

Pronto PicOS 1.4 Installation Reference Guide

Pronto PicOS 1.4 Installation Reference Guide Pronto PicOS 1.4 Installation Reference Guide PICA8 Inc. Mar, 2012 Copyright (C) 2009, 2010, 2011, 2012 Pica8, Inc. All rights reserved. Pica8, Inc. makes no warranty of any kind with regard to this material,

More information

SCM EVK (SCM120

SCM EVK (SCM120 SCM120-120-EVK (SCM120 and SCB120) BSP Linux User s Manual Disclaimers This manual has been carefully checked and believed to contain accurate information. Axiomtek Co., Ltd. assumes no responsibility

More information

Project 3: An Introduction to File Systems. COP 4610 / CGS 5765 Principles of Operating Systems

Project 3: An Introduction to File Systems. COP 4610 / CGS 5765 Principles of Operating Systems Project 3: An Introduction to File Systems COP 4610 / CGS 5765 Principles of Operating Systems Introduction Project 3 learning objectives File system design and implementation File system testing Data

More information

Disks, Filesystems Todd Kelley CST8177 Todd Kelley 1

Disks, Filesystems Todd Kelley CST8177 Todd Kelley 1 Disks, Filesystems Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 sudo and PATH (environment) disks partitioning formatting file systems: mkfs command checking file system integrity: fsck

More information

Disks, Filesystems 1

Disks, Filesystems 1 Disks, Filesystems 1 sudo and PATH (environment) disks partitioning formatting file systems: mkfs command checking file system integrity: fsck command /etc/fstab mounting file systems: mount command unmounting

More information

This is Worksheet and Assignment 12. Disks, Partitions, and File Systems

This is Worksheet and Assignment 12. Disks, Partitions, and File Systems This is Worksheet and Assignment 12 This is a combined Worksheet and Assignment.. Quizzes and tests may refer to work done in this Worksheet and Assignment; save your answers. You will use a checking program

More information

CST8207 GNU/Linux O/S I Disks and Partitions

CST8207 GNU/Linux O/S I Disks and Partitions CST8207 GNU/Linux O/S I Disks and Partitions Topics Disk Partition Table Identifying Partitions Linux Partitions fdisk CST8207 - Algonquin College 2 Associated Readings Chapter 3: pages 71 82 You ve already

More information

Linux. For BCT RE2G2. User Guide. Document Reference: BCTRE2G2 Linux User Guide. Document Issue: Associated SDK release: 1.

Linux. For BCT RE2G2. User Guide. Document Reference: BCTRE2G2 Linux User Guide. Document Issue: Associated SDK release: 1. Linux For BCT RE2G2 User Guide Document Reference: BCTRE2G2 Linux User Guide Document Issue: 1.05 Associated SDK release: 1.04 Author: D Robinson Contents Introduction... 3 Environment Setup... 3 Required

More information

i.mx Linux User's Guide

i.mx Linux User's Guide NXP Semiconductors Document Number: IMXLUG User's Guide Rev. L4.9.88_2.0.0-ga, 05/2018 i.mx Linux User's Guide 1 Overview This document describes how to build and install the i.mx Linux OS BSP, where BSP

More information

Item Number Item Name Qty conga-qeval/qseven each

Item Number Item Name Qty conga-qeval/qseven each 1 Subject Affected Products conga-qmx6 Subject Quick Start Guide Date (dd.mm.yy) 17.05.13 Author MSW 2 Affected Article Numbers Article Number(s) Numerous Product conga-qmx6 (hardware revision B.1) 3 Information

More information

Providing Traditional Computational Facility through TV SetTop Box (PROTRACTS)

Providing Traditional Computational Facility through TV SetTop Box (PROTRACTS) Providing Traditional Computational Facility through TV SetTop Box (PROTRACTS) Mr. PydalaBhasha #1, Mr.K. Muni Chandra Sekhar #2 1 Assistant Professor, Department of I.T, Sree Vidyanikethan Engineering

More information

How to Back-Up a fit-pc2 Using Only a USB Stick (and some creative partitioning)

How to Back-Up a fit-pc2 Using Only a USB Stick (and some creative partitioning) This process allows you to back up your fit-pc2 workstation (or any USB-bootable computer) so you can quickly and easily restore your computer to its original state in the event of a hard drive failure,

More information

SparkGate7 Quick startup guide

SparkGate7 Quick startup guide SparkGate7 Quick startup guide Thank you for buying a SparkGate and SPARK-501 SOM. More information on both can be found at www.shiratech.com. The Shiratech team. In the box: The evaluation kit you have

More information

fitlet-rm specifications

fitlet-rm specifications fitlet-rm specifications fitlet-rm Rugged and Robust fitlet-rm is a ruggedized miniature fanless PC housed in an all-metal housing. It provides excellent durability at extreme temperatures and under conditions

More information

Wind River Pulsar Linux Quick Start For Avnet Zynq Version 7.0

Wind River Pulsar Linux Quick Start For Avnet Zynq Version 7.0 Wind River Pulsar Linux Quick Start For Avnet Zynq Version 7.0 Page 1 Copyright 2017 Avnet, Inc. AVNET, Reach Further, and the AV logo are registered trademarks of Avnet, Inc. All other brands are the

More information

Manually Mount Usb Flash Drive Linux Command Line Redhat

Manually Mount Usb Flash Drive Linux Command Line Redhat Manually Mount Usb Flash Drive Linux Command Line Redhat How to Format USB in Linux using Command Line. This article will help you to format USB Flash drive in Ubuntu systems via Command line. So first

More information

Project 3: An Introduction to File Systems. COP4610 Florida State University

Project 3: An Introduction to File Systems. COP4610 Florida State University Project 3: An Introduction to File Systems COP4610 Florida State University 1 Introduction The goal of project 3 is to understand basic file system design and implementation file system testing data serialization/de-serialization

More information

Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space

Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space NEC Express Servers NEC Express5800/ft Series 1st Edition 03-2013 Introduction This document is intended as a

More information

Matrix. Get Started Guide V2.0

Matrix. Get Started Guide V2.0 Matrix Get Started Guide V2.0 Overview Matrix is a single board mini computer based on ARM with a wide range of interface, equipped with a powerful i.mx6 Freescale processor, it can run Android, Linux,

More information

DEVELOPMENT GUIDE. ARTiGO A820. Linux BSP v

DEVELOPMENT GUIDE. ARTiGO A820. Linux BSP v DEVELOPMENT GUIDE ARTiGO A820 Linux BSP v1.0 1.11-09242015-165300 Copyright Copyright 2015 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted, transcribed,

More information

TEGRA LINUX DRIVER PACKAGE (R15.BETA)

TEGRA LINUX DRIVER PACKAGE (R15.BETA) TEGRA LINUX DRIVER PACKAGE (R15.BETA) RN_05071-R15 April 13, 2012 Advance Information Subject to Change Release Notes RN_05071-R15 TABLE OF CONTENTS 1.0 ABOUT THIS RELEASE... 4 1.1 What s New... 4 1.2

More information

CST8207: GNU/Linux Operating Systems I Lab Nine Disks, Partitions, and File Systems Part 2. Disks, Partitions, and File Systems - Part 2 of 2

CST8207: GNU/Linux Operating Systems I Lab Nine Disks, Partitions, and File Systems Part 2. Disks, Partitions, and File Systems - Part 2 of 2 Student Name: Lab Section: Disks, Partitions, and File Systems - Part 2 of 2 1 Due Date - Upload to Blackboard by 8:30am Monday April 9, 2012 Submit the completed lab to Blackboard following the Rules

More information

Chapter 6. Linux File System

Chapter 6. Linux File System Chapter 6 Linux File System 1 File System File System management how to store informations on storage devices The Hierarchical Structure Types of file Common File system Tasks 2 The Hierarchical Structure

More information

OMNI Expandable HMI Panel Computer with Intel Celeron J1900/ N2807 Processor

OMNI Expandable HMI Panel Computer with Intel Celeron J1900/ N2807 Processor 17 OMNI-2155 15.6 Expandable HMI Panel Computer with Intel Celeron J1900/ N2807 Processor Expandable HMI Panel PC Solution OMNI Slot 9-30 V Power Connector RS-232/422/485 VGA Remote Power Connector USB

More information

Disks, Filesystems, Booting Todd Kelley CST8177 Todd Kelley 1

Disks, Filesystems, Booting Todd Kelley CST8177 Todd Kelley 1 Disks, Filesystems, Booting Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 sudo and PATH (environment) disks partitioning formatting file systems: mkfs command checking file system integrity:

More information

Getting Started with Pentaho and Cloudera QuickStart VM

Getting Started with Pentaho and Cloudera QuickStart VM Getting Started with Pentaho and Cloudera QuickStart VM This page intentionally left blank. Contents Overview... 1 Before You Begin... 1 Prerequisites... 1 Use Case: Development Sandbox for Pentaho and

More information

QUICK START GUIDE ALTA DS 4K. Android EVK v

QUICK START GUIDE ALTA DS 4K. Android EVK v QUICK START GUIDE ALTA DS 4K Android EVK v1.0.5 1.00-07052017-111300 Copyright Copyright 2017 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted,

More information

Rugged Panel PC AcuPanel 12 User Manual Revision 2.0

Rugged Panel PC AcuPanel 12 User Manual Revision 2.0 ACURA EMBEDDED SYSTEMS INC. Rugged Panel PC AcuPanel 12 User Manual Revision 2.0 Contents Chapter 1: AcuPanel 12 Overview Specifications... 2 Knowing AcuPanel 12... 4 Rear Top... 4 Rear Bottom... 5 Rear

More information

FabiaTech Corporation

FabiaTech Corporation Version. FX567 Series User s Quick Reference Page /5. Brief ANTENNA DIGITAL I/O DISPLAY POWER BUTTON RESET USB DISPLAY LAN LAN HDD The FX567x is a fanless, compact size embedded system with Intel i / i5

More information

Idea6410 Ubuntu User Manual V 0.19

Idea6410 Ubuntu User Manual V 0.19 V 0.19 Version: Ubuntu-9.04_v0.19 Linux PC environment: Ubuntu-9.04 1 1. Install Cross-compile 1.1 Open Linux-ubuntu_v0.19\cross_compile\ folder, and copy Arm-none-lunux-gnueabi-arm-2008q3-72-for-linux.tar.bz2

More information

AT91SAM9G45-EVK Linux. User Manual

AT91SAM9G45-EVK Linux. User Manual AT91SAM9G45-EVK Linux User Manual Revision History Rev Date Description 1.0 2011-02-10 Initial version Catalogue 1. BUILD THE DEVELOPMENT PLATFORM... 1 1.1Create the working directory... 1 1.2 Cross compilation

More information

Using GIGABYTE Netbook for the First Time

Using GIGABYTE Netbook for the First Time Congratulations on your purchase of the GIGABYTE netbook! This manual will help you to get started with setting up your netbook. The final product configuration depends on the model at the point of your

More information

USER Manual RCS Xeon /Core i7/i5/i3 Fanless Robust Computing System High Performance, Flexible, Expandable, Extended Temperature.

USER Manual RCS Xeon /Core i7/i5/i3 Fanless Robust Computing System High Performance, Flexible, Expandable, Extended Temperature. RCS-9000 USER Manual Intel Xeon /Core i7/i5/i3 Fanless Robust Computing System High Performance, Flexible, Expandable, Extended Temperature 1.4.0 Edition 20171103 Record of Revision Version Date Page Description

More information

Tutorial setting up linux-port

Tutorial setting up linux-port Tutorial setting up linux-port Tutorial for setting linux-port on the e-puck IAS Laboratory-Bristol & Supméca-Toulon Jean-Charles Antonioli The theory is when it does not work, but we know why. Practice

More information

User Manual V4.0. Element14 element14.com/pidesktop 1

User Manual V4.0. Element14 element14.com/pidesktop 1 User Manual Element14 element14.com/pidesktop 1 Table of Contents 1. Introduction... 3 1.1 Overview... 3 1.2 Features... 3 1.3 Kit Content... 3 2. Getting Started... 4 2.1 Additional Required Items...

More information

Upgrade Cisco Interface Module for LoRaWAN IXM using the Console

Upgrade Cisco Interface Module for LoRaWAN IXM using the Console Upgrade Cisco Interface Module for LoRaWAN IXM using the Console Contents Introduction Prerequisites Requirements Components Used Background Information Configure Step 1. Prepare the firmware images (and

More information

How to securely isolate Damn Vulnerable Linux with VirtualBox

How to securely isolate Damn Vulnerable Linux with VirtualBox How to securely isolate Damn Vulnerable Linux with VirtualBox Motivation I have this vision of going through and testing software inside of a closed lab that allows me to understand exploits and vulnerabilities

More information

Week 10 Project 3: An Introduction to File Systems. Classes COP4610 / CGS5765 Florida State University

Week 10 Project 3: An Introduction to File Systems. Classes COP4610 / CGS5765 Florida State University Week 10 Project 3: An Introduction to File Systems Classes COP4610 / CGS5765 Florida State University 1 Introduction The goal of project 3 is to understand basic file system design and implementation file

More information

Quick Start Guide EX-9686U/A-L(A9) Copyright TOPSCCC Technology CO., LTD. All rights reserved

Quick Start Guide EX-9686U/A-L(A9) Copyright TOPSCCC Technology CO., LTD. All rights reserved Quick Start Guide Copyright 2000 2014 TOPSCCC Technology CO., LTD. All rights reserved Release Notes Version Release Date Notes 1.0 June 2013 Initial release 2.0 October 2013 Correct some typo errors 3.1

More information

Manually Mount Usb Flash Drive Linux Command Line Fedora

Manually Mount Usb Flash Drive Linux Command Line Fedora Manually Mount Usb Flash Drive Linux Command Line Fedora This page explains how to use USB drives, like external hard disks and USB flash By default, storage devices that are plugged into the system mount

More information

RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide

RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on September 17, 2008 Table of Contents 1

More information

DEVELOPMENT GUIDE. Basler PowerPack for Embedded Vision

DEVELOPMENT GUIDE. Basler PowerPack for Embedded Vision DEVELOPMENT GUIDE Document Number: AW001435 Version: 01 Language: 000 (English) Release Date: 19 May 2017 Contacting Basler Support Worldwide Europe, Middle East, Africa Basler AG An der Strusbek 60 62

More information

Bootloader D. Balakrishna, Research Associate, IIIT-H Bootloaders are important when we are developing embedded systems, depending on the capabilities of the board and processor on which an embedded system

More information

Renesas Koelsch Hardware Setup and Software Installation

Renesas Koelsch Hardware Setup and Software Installation Renesas Koelsch Hardware Setup and Software Installation Table of content Introduction Master GDP-ivi10 GDP-ivi9 GDP-ivi7 Software setup Pre-built binaries Quick Start Obtain and Install Renesas Graphics

More information

IOT-GATE-iMX7 Datasheet

IOT-GATE-iMX7 Datasheet IOT-GATE-iMX7 Datasheet Industrial Internet of Things Gateway Product Specification v.1.3 Capable, compact, affordable: i.mx7 Dual IoT-Gate has been designed to answer demanding IoT application requirements

More information

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Created by Simon Monk Last updated on 2016-12-03 03:20:15 AM UTC Guide Contents Guide Contents Overview You Will Need Downloading

More information

Quick Start Guide. SABRE Platform for Smart Devices Based on the i.mx 6 Series

Quick Start Guide. SABRE Platform for Smart Devices Based on the i.mx 6 Series Quick Start Guide SABRE Platform for Smart Devices Based on the i.mx 6 Series Quick Start Guide About the SABRE Platform for Smart Devices Based on the i.mx 6 Series The Smart Application Blueprint for

More information

By: Yushi Wang Partners: Shen Yue and Yubing Xu Group 6. How to Setup Pandaboard ES Software Environment for UAV Project

By: Yushi Wang Partners: Shen Yue and Yubing Xu Group 6. How to Setup Pandaboard ES Software Environment for UAV Project Application Notes By: Yushi Wang Partners: Shen Yue and Yubing Xu Group 6 How to Setup Pandaboard ES Software Environment for UAV Project Installation of Ubuntu Official tutorial can be found: http://omappedia.org/wiki/ubuntu_pre-built_binaries_guide

More information

SOLIDRUN LTD. SolidRun Ltd. P.O Box 75 Migdal-Tefen, ISRAEL

SOLIDRUN LTD. SolidRun Ltd. P.O Box 75 Migdal-Tefen, ISRAEL SOLIDRUN LTD CuBox-i series SolidRun Ltd. P.O Box 75 Migdal-Tefen, 2495900 ISRAEL http://www.solid-run.com/ Quick User s Guide Contents of package One CuBox-i Miniature Computer. Optionally, one microsd

More information

Porting Tizen v2.3 on ODROID U3. SKKU Embedded Software Lab.

Porting Tizen v2.3 on ODROID U3. SKKU Embedded Software Lab. 1 Porting Tizen v2.3 on ODROID U3 Index 2 Tizen Device Partitioning Tizen U-Boot Building the Kernel Flashing a Tizen Platform Image Tizen Platform Configuration Troubleshootings 3 Tizen Device Partitioning

More information

RakunLS1, Qseven SBC module with LS1021A

RakunLS1, Qseven SBC module with LS1021A RakunLS1, Qseven SBC module with LS1021A Software user manual $HeadURL: https://svn.borea.si/svn/docs/rakun/docs/rakunls1_sw_um.fodt $ $Rev: 932 $ $Date: 2015-10-15 16:02:53 +0200 (čet, 15 okt 2015) $

More information

OMAP3530 has 256MB NAND flash in PoP (PoP: Package-On-Package implementation for Memory Stacking) configuration.

OMAP3530 has 256MB NAND flash in PoP (PoP: Package-On-Package implementation for Memory Stacking) configuration. 1 of 7 04/18/09 15:39 BeagleBoardNAND From elinux.org This page is about using (booting/running from) NAND (http://en.wikipedia.org/wiki/flash_memory#nand_flash) memory on BeagleBoard. Parts of this page

More information

RocketRAID 2522 SATA Controller Ubuntu Linux Installation Guide

RocketRAID 2522 SATA Controller Ubuntu Linux Installation Guide RocketRAID 2522 SATA Controller Ubuntu Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on February 16, 2009 Table of Contents 1 Overview...1

More information

Raspberry Pi Network Boot

Raspberry Pi Network Boot Raspberry Pi Network Boot @Phenomer October 22, 2014 1 Raspberry Pi SD initrd 2 /srv/pxe ( ) /srv/pxe /srv/pxe/tftp - TFTP /srv/pxe/tftp/pxelinux.cfg - /srv/pxe/repo - /srv/pxe/initrd - initrd % sudo mkdir

More information

ZOTAC ZBOX nano. User s Manual

ZOTAC ZBOX nano. User s Manual User s Manual ZOTAC ZBOX nano No part of this manual, including the products and software described in it, may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into

More information

SABRE for Automotive Infotainment Quick Start Guide. Smart Application Blueprint for Rapid Engineering Based on the i.mx 6 Series

SABRE for Automotive Infotainment Quick Start Guide. Smart Application Blueprint for Rapid Engineering Based on the i.mx 6 Series SABRE for Automotive Infotainment Quick Start Guide Smart Application Blueprint for Rapid Engineering Based on the i.mx 6 Series About SABRE Platform for Automotive Infotainment Based on the the i.mx 6

More information

ZOTAC ZBOX nano. User s Manual

ZOTAC ZBOX nano. User s Manual User s Manual ZOTAC ZBOX nano No part of this manual, including the products and software described in it, may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into

More information

RG-MACC_2.0 Installation Manual

RG-MACC_2.0 Installation Manual RG-MACC_2.0 Installation Manual Ruijie Networks Co., Ltd all rights reserved 1 Copyright Clarify Copyright ownership belongs to Ruijie, shall not be reproduced, copied, or used in other ways without permission.

More information

Quick Start Guide. i.mx 6SoloLite Evaluation Kit

Quick Start Guide. i.mx 6SoloLite Evaluation Kit Quick Start Guide i.mx 6SoloLite Evaluation Kit Quick Start Guide About the i.mx 6SoloLite Evaluation Kit The i.mx 6SoloLite evaluation kit (EVK) offers a solid platform to evaluate the i.mx 6 series single-core

More information

ELE409 SPRING2018 LAB0

ELE409 SPRING2018 LAB0 ELE409 SPRING2018 LAB0 Getting familiar with the LXDE system Objectives: Pre-Lab: 1. Burn the linux system onto a micro-sd card 2. Get familiar with basic linux commands 3. Be able to communicate with

More information

Rugged Panel PC AcuPanel 17 User Manual Revision 1.5

Rugged Panel PC AcuPanel 17 User Manual Revision 1.5 ACURA EMBEDDED SYSTEMS INC. Rugged Panel PC AcuPanel 17 User Manual Revision 1.5 Contents Chapter 1: AcuPanel 17 Overview Specifications... 2 Knowing AcuPanel 17... 4 Rear Top... 4 Rear Bottom... 5 Rear

More information

Using AORUS Notebook for the First Time

Using AORUS Notebook for the First Time Congratulations on your purchase of the AOS Notebook! This Manual will help you to get started with setting up your notebook. For more detailed information, please visit our website at http://www.aorus.com.

More information

EX-9686U/A-L(A9) Hardware User Manual

EX-9686U/A-L(A9) Hardware User Manual EX-9686U/A-L(A9) Hardware User Manual Release Notes Version Release Date Notes 1.00 November, 2013 Initial Release 2.00 January, 2014 The 2 nd release Disclaimer This documentation is provided for use

More information

fit-pc3i Owner s Manual

fit-pc3i Owner s Manual Owner s Manual fit-pc3i Owner s Manual April-2015 Introduction Package contents Hardware specifications fit-pc3i features Quick start guide Connecting fit-pc3i Booting Linux Booting Windows 7 Maintenance

More information

How To Resize ext3 Partitions Without Losing Data

How To Resize ext3 Partitions Without Losing Data By Falko Timme Published: 2007-01-07 17:12 How To Resize ext3 Partitions Without Losing Data Version 1.0 Author: Falko Timme Last edited 12/31/2006 This article is about

More information

USB 2.0 Multi-Plus Card Reader/Writer. User s Manual

USB 2.0 Multi-Plus Card Reader/Writer. User s Manual USB 2.0 Multi-Plus Card Reader/Writer User s Manual Copyright Statement No part of this publication may be reproduced in any form by any means without the prior written permission. Other trademarks or

More information

INSTALLATION. Security of Information and Communication Systems. Table of contents

INSTALLATION. Security of Information and Communication Systems. Table of contents Security of Information and Communication Systems INSTALLATION Table of contents 1. Introduction...2 2....3 2.1. Hardware requirement...3 2.2. of the system...3 2.3. of ALCASAR...7 2.4. Connexion to the

More information

Build a powerful Web Server

Build a powerful Web Server 2018/03/31 20:15 1/10 Build a powerful Web Server Build a powerful Web Server Basic Linux knowledge is required. Operation confirmed with testing in our Ubuntu Minimal 16.04.3 LTS on updated 4.9.51-64

More information

EM210 Linux User Manual

EM210 Linux User Manual EM210 Linux User Manual V1.2 Date:2014-10-10 www.armdesigner.com EM210 Linux User Manual Index 1. Features...3 2. Hardware Introduction...3 2.1 Hardware interface...4 2.2 Set boot mode...4 3. Software

More information

ThinkCentre M715 Tiny Thin Client Photography

ThinkCentre M715 Tiny Thin Client Photography ThinkCentre M715 Tiny Thin Client Photography ThinkCentre M715 Tiny Thin Client Platform Specifications Processor Disk Optical Onboard SATA Media reader DP cable Chipset Front ports ports I/O box Audio

More information

MYD-Y6ULX Development Board

MYD-Y6ULX Development Board MYD-Y6ULX Development Board MYC-Y6ULX CPU Module as Controller Board 528Hz NXP i.mx 6UL/6ULL ARM Cortex-A7 Processors 1.0mm pitch 140-pin Stamp Hole Expansion Interface for Board-to-Board Connections 256MB

More information

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide

RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide RocketRAID 231x/230x SATA Controller Red Hat Enterprise/CentOS Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 5, 2008 Table

More information

imx6-dk ARM A9 Development Kit Linux Development Guide

imx6-dk ARM A9 Development Kit Linux Development Guide imx6-dk ARM A9 Development Kit Linux Development Guide Cadia Networks Laguna Hills, CA Tel: +1-866-462-2342 www.cadianetworks.com support@cadianetworks.com Doc Number: R1401-001 Revision 1.1 January 22,

More information

MFT / Linux Setup Documentation May 25, 2008

MFT / Linux Setup Documentation May 25, 2008 MFT / Linux Setup Documentation May 25, 2008 1. Loading the MFT software. The MFT software actually uses a driver called Fast Block Device or fbd. The MFT software is designed to run from /usr/local/fbd.

More information

ZOTAC ZBOX nano. User s Manual

ZOTAC ZBOX nano. User s Manual User s Manual ZOTAC ZBOX nano No part of this manual, including the products and software described in it, may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into

More information

Product Specifications. XPC slim Barebone DH02U5. Feature Highlights. Powerful 1.3-litre PC with NVIDIA graphics supports four Ultra HD displays

Product Specifications. XPC slim Barebone DH02U5. Feature Highlights. Powerful 1.3-litre PC with NVIDIA graphics supports four Ultra HD displays 2018 by (Germany). All information subject to change without notice. Pictures for illustration purposes only. Powerful 1.3-litre PC with NVIDIA graphics supports four Ultra HD displays This space-saving

More information

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide

RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide RocketRAID 231x/230x SATA Controller Fedora Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on April 7, 2009 Table of Contents 1 Overview...1

More information

A176 Cyclone. GPGPU Fanless Small FF RediBuilt Supercomputer. IT and Instrumentation for industry. Aitech I/O

A176 Cyclone. GPGPU Fanless Small FF RediBuilt Supercomputer. IT and Instrumentation for industry. Aitech I/O The A176 Cyclone is the smallest and most powerful Rugged-GPGPU, ideally suited for distributed systems. Its 256 CUDA cores reach 1 TFLOPS, and it consumes less than 17W at full load (8-10W at typical

More information

Adding a block devices and extending file systems in Linux environments

Adding a block devices and extending file systems in Linux environments Adding a block devices and extending file systems in Linux environments In this exercise we simulate situation where user files partition /home fills up and needs to be extended. Also we migrate from static

More information

This section describes the procedures needed to add a new disk to a VM. vmkfstools -c 4g /vmfs/volumes/datastore_name/vmname/xxxx.

This section describes the procedures needed to add a new disk to a VM. vmkfstools -c 4g /vmfs/volumes/datastore_name/vmname/xxxx. Adding a New Disk, page 1 Mounting the Replication Set from Disk to tmpfs After Deployment, page 3 Manage Disks to Accommodate Increased Subscriber Load, page 5 Adding a New Disk This section describes

More information

Features and Benefits. Certifications

Features and Benefits. Certifications UC-5100 Series Arm-based Industrial computing platform for industrial automation Features and Benefits Armv7 Cortex-A8 1000 MHz processor Dual auto-sensing 10/100 Mbps Ethernet ports 4 software-selectable

More information

ZP-PI335GK-BT User s Manual

ZP-PI335GK-BT User s Manual 291-MB387-02ZTF ZP-PI335GK-BT User s Manual No part of this manual, including the products and software described in it, may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated

More information

INSTALLATION. Security of Information and Communication Systems

INSTALLATION. Security of Information and Communication Systems Security of Information and Communication Systems INSTALLATION Table of contents 1.Introduction...2 2.Installation...3 2.1.Hardware requirement...3 2.2.Installation of the system...3 2.3.Installation of

More information

IVI Fast boot approach

IVI Fast boot approach IVI Fast boot approach 07/13/2016 Yuichi Kusakabe SS Engineering Group Fujitsu TEN LIMITED 1 About Myself Yuichi Kusakabe (Fujitsu TEN LIMITED) Software Engineer of IVI about 10 years (for 16-bit and 32-bit

More information

Inspiron 3268 Setup and Specifications

Inspiron 3268 Setup and Specifications Inspiron 3268 Setup and Specifications Computer Model: Inspiron 3268 Regulatory Model: D13S Regulatory Type: D13S002 Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps

More information

Quick Start Guide SBC21/NSD21/EC 21 SBC21 / EC21 / NSD21. Quick Start Guide. Copyright IC Nexus Corporation. All rights reserved

Quick Start Guide SBC21/NSD21/EC 21 SBC21 / EC21 / NSD21. Quick Start Guide. Copyright IC Nexus Corporation. All rights reserved SBC21 / EC21 / NSD21 Quick Start Guide Copyright 2000 2013 IC Nexus Corporation. All rights reserved Release Notes Version Release Date Notes 1.0 June 2013 Initial release 2.0 October 2013 Correct some

More information