MBL Users Manual For EV44B0-II Board

Size: px
Start display at page:

Download "MBL Users Manual For EV44B0-II Board"

Transcription

1 For EV44B0-II Board MICETEK International Inc., 1/28

2 Glossary MBL MICETEK BOOT LOADER MICETEK International Inc., 2/28

3 Table of Contents Introduction... 5 Memory Map... 6 Flash Memory Map... 6 DRAM Memory Map... 6 Installation How to burn the MBL to flash Connect to MBL (Micetek Boot Loader):... 8 Using the Monitor/Debug Firmware What is MBL Operational Procedure System Power-up System Initialization Commands Help printenv setenv saveenv md mw mm nm cp cmp crc erase flinfo protect bdinfo iminfo mtest usb icache dcache MICETEK International Inc., 3/28

4 reset sleep version go run bootm bootd bootp Tftpboot rarpboot loadb loads autoscr base echo Update MBL or Save user program on FlashROM MICETEK International Inc., 4/28

5 Introduction MBL is Bootloader for booting the Linux kernel or other applications from EV44b0-II board. MBL supports Ethernet/serial/USB to download an image. When you download a large image from a server, Ethernet capability can help you to save time. For convenience, MBL also support serial or USB download. The software structure of MBL is described in figure 1. Command TFTP Handling Handlin Kermit Console UDP Environmen IP ARP UART Driver Ethernet Ethernet Driver Flash Driver USB Driver Initialize System EV44b0ii S3C2510 UART EV44b0ii S3C2510 Ethernet Ethernet MAC Flash Memory USB Application & Protocols Driver Physical Fig 1. Firmware Structure of MBL In figure 1, MBL has 3 layers as Application & Protocol, Driver and Physical. In physical layer, there are three components, which are UART, Ethernet, USB and Flash memory. Driver layer has a responsibility of communicating with Application & Protocol layer and Physical layer. Application & protocol layer has command routines, which are used by users, and delivers commands to each protocol. MICETEK International Inc., 5/28

6 Memory Map Flash Memory Map 0x FLASH (2MB) Free space 0x x x Environment Variables Bootloader Fig 2. Flash Memory Map Figure 2 shows the memory map of Flash memory. Flash memory is divided into 3 parts, which are MBL code, free space and environment space. After reset or power up, Flash memory base address is 0x0. DRAM Memory Map 0x0c X0c MBL code copy and running area Image Downloading Area 0x0c Fig 3. SDRAM Memory Map MICETEK International Inc., 6/28

7 Figure 3 shows the memory map of SDRAM. After MBL boot up, MBL copy itself to RAM from 0x0c to 0x0c7fffff. The lower space of RAM is reserved for downloading Linux image or other applications such as EV44B0II test program. The default address of downloading space is 0x0c But you can change this downloading space address if you want to. MICETEK International Inc., 7/28

8 Installation 3.1 How to burn the MBL to flash Please see the readme.txt on your CD s root directory. 3.2 Connect to MBL (Micetek Boot Loader): PART A: HARDWARE CONNECT: install USB port driver: select MBL directory\usb\drivers\bulkusb.inf, right-click it and select install PART B: ROOT INSTALL. (1) Start Programms Accessories Communications Hyper Terminal, (2) Then create a new terminal, input the description of connecting, like ev44b0ii: MICETEK International Inc., 8/28

9 (3) Select COM port to config as follows and select OK : (NOTES: baud rate must be , flow control should be NONE. And the rest are the default value. ) (4) Power on EV44B0II board, MBL will boot up. At end prompt appears when it means the EV44b0-II board is ready and can accept EV44b0ii command. MICETEK International Inc., 9/28

10 Using the Monitor/Debug Firmware The EV44b0II board computer has a resident firmware package that provides a self-contained programming and operating environment. The firmware, named MBL, provides the user with monitor/debug interface, inline assembler and disassembly, program download, register and memory manipulation, and I/O control functions. This Chapter is a how-to-use description of the MBL package, including the user interface and command structure What is MBL MBL is a resident firmware package for the ARM family single board computer. The firmware (stored in one 1Mx16 Flash ROM device) provides a self-contained programming and operating environment. MBL interacts with the user through pre-defined commands that are entered via the terminal. These commands are defined in Section 4.3, Commands. The user interface to MBL is the command line. A number of features have been implemented to achieve an easy and intuitive command line interface. The command line prompt is. Any MBL command may be executed from the prompt. In general, MBL is case sensitive. For serial communications, MBL requires baud rate, eight data bits, no parity, and one stop bit, no data flow control. After the system initialization, the board waits for a command-line input from the user terminal. When a proper command is entered, the operation continues in one of the two basic modes. If the command causes the execution of the user program, the MBL may or may not be re-entered, depending on the discretion of the user. For the alternate case, the command will be executed under control of the MBL firmware, and after command completion, the system returns to command entry mode. On operation, user can interrupt current task by pressing CRTL-C. For commands that accept an optional [.b.w.l] to modify the memory access size, the valid values are:.b 8-bit(byte) access.w 16-bit(word) access.l 32-bit(long) access If no optional is provided, the default width is.l, 32-bit Operational Procedure System power-up and initial operation are described in detail in chapter 1. This information is repeated here for convenience and to prevent possible damage System Power-up Be sure the power supply is connected properly prior to power-up MICETEK International Inc., 10/28

11 Make sure the terminal is connected to UART0 (P2) connector. Turn power on to the board System Initialization Hardware RESET Button. Software Reset Command Commands If MBL is burned to Flash memory and power on, you can find the screen as below from terminal window: In general, when you don t press any key, the number following Hit any key to stop autoboot: in this screen is decreased by one per sec. When the counter reaches to zero, tftp;go 0x0c command runs automatically. If you press any key before counter value 0, then prompt appears. Welcome to MICETEK World! M(icetek)B(oot)L(oader) v1.0.2 (Jan :43:45) MBL code range: 0x0c > 0x0c71764c DRAM Configuration: Bank #0: start 0x0c MB FLASH Configuration: Bank: 2 MB Hit any key to stop autoboot: 0 The initial screen shows such various information as version, MBL code range, SDRAM size and base, FLASH memory size and so on Help Press help or? or h', then you can find all possible commands that MBL supports. MICETEK International Inc., 11/28

12 help go - start application at address 'addr' run - run commands in an environment variable bootm - boot application image from memory bootp - boot image via network using BootP/TFTP protocol tftpboot- boot image via network using TFTP protocol and env variables ipaddr and serverip rarpboot- boot image via network using RARP/TFTP protocol bootd - boot default, i.e., run 'bootcmd' loads - load S-Record file over serial line loadb - load binary file over serial line (kermit mode) autoscr - run script from memory md - memory display mm - memory modify (auto-incrementing) nm - memory modify (constant address) mw - memory write (fill) cp - memory copy cmp - memory compare crc32 - checksum calculation base - print or set address offset printenv- print environment variables setenv - set environment variables saveenv - save environment variables to persistent storage protect - enable or disable FLASH write protection erase - erase FLASH memory flinfo - print FLASH memory information bdinfo - print Board Info structure iminfo - print header information for application image loop - infinite loop on address range mtest - simple RAM test icache - enable or disable instruction cache dcache - enable or disable data cache reset - Perform RESET of the CPU echo - echo args to console sleep - delay execution for some time usb - USB download with verbose info version - print monitor version help - print online help? - alias for - quick boot If you want to know about a specific usage of a command, then press help command. help md md [.b,.w,.l] address [# of objects] - memory display printenv Showing the environment value stored in Flash memory. MICETEK International Inc., 12/28

13 printenv bootargs=devfs=mount root=ramfs console=ttys0, bootcmd=tftp;go 0x0c baudrate= ethaddr=08:00:3e:21:c7:f8 ipaddr= serverip= netmask= bootfile="linux_bootram.bin" loadaddr=0x0c bootdelay=9 rootdelay=7 Environment size: 255/65532 bytes bootcmd : the environment value which runs automatically after counter value zero. When the counter reaches zero, if no keys are pressed, MBL starts to find the command in bootcmd variable. Then MBL performs the command in bootcmd variable. baudrate : UART speed rate. The unit is bps. ethaddr : This is the Ethernet MAC address of the EV44b0-II board. bootfile : This value is used for tftpboot command. If users execute tftpboot command without any information, then MBL will download a file depicted in bootfile variable. bootdelay : the counter value which is the default number MBL delays and automatically runs bootcmd. ipaddr : IP address of EV44b0-II board serverip : IP address of host computer which is a tftp server netmask : netmask value setenv Setting the environment variables that are in SDRAM now. setenv bootdelay 4 printenv bootargs=devfs=mount root=ramfs console=ttys0, bootcmd=tftp;go 0x0c baudrate= ethaddr=08:00:3e:21:c7:f8 ipaddr= serverip= netmask= bootfile="linux_bootram.bin" loadaddr=0x0c bootdelay=4 MICETEK International Inc., 13/28

14 After changing the value in SDRAM, input printenv and press Enter to confirm values saveenv Saving the values from SDRAM to Flash memory. You should use saveenv to save the environment values to Flash memory. saveenv Un-Protected 1 sectors Erasing sector 4... ok. Saving Environment to Flash...done. Protected 1 sectors md Displaying the memory contents. If you set the optional [.b.w.l] explicitly, the optional must follow md command and there are no spaces between them. (eg md.b 0x0c ) help md md [.b,.w,.l] address [# of objects] - memory display md : ea e59ff014 e59ff014 e59ff b : displaying the memory contents in the unit of byte(8-bit).w : displaying the memory contents in the unit of word(16-bit)..l : displaying the memory contents in the unit of double word(32-bit) and it is the default optional. The last argument is the length that is to be displayed. md.b : ea 14 f0 9f e5 14 f0 9f e5 14 f0 9f e : 14 f0 9f e5 14 f0 9f e5 14 f0 9f e5 14 f0 9f e : c c 0c c c : MICETEK International Inc., 14/28

15 md.w : 0012 ea00 f014 e59f f014 e59f f014 e59f : f014 e59f f014 e59f f014 e59f f014 e59f : c c00 000c 0c c : c c00 001c 0c00 beef dead : c c c71 c0de 0bad..p...p.Pwq : 0000 e10f 001f e3c e380 f000 e129...) : 0015 eb mw Writing a value into a specific memory address that must be writable. If you set the optional [.b.w.l] explicitly, the optional must follow mw command and there are no spaces between them (eg mw.w 0x0c ). If you try to modify the value in ROM, this operation is in invalidation. help mw mw [.b,.w,.l] address value [count] - write memory mw 0x0c md 0x0c c000000: b4a3db =Jk If count isn t set, its default value is mm The mm command modifies memory at the address, and at the same time the address automatically increases 1 unit, which consist to the optional. If you set the optional [.b.w.l] explicitly, the optional must follow md command and there are no spaces between them(eg mm.b 0x0c ). And after you modify the value of the current addr, the addr increases as follows: if you selected.b, the addr automatically increase 1(byte). if you selected.w (the default optional), the addr automatically increase 2(word). if you selected.l, the addr automatically increase 4(long). MICETEK International Inc., 15/28

16 help mm mm [.b,.w,.l] address - memory modify, auto increment address mm 0x0c c000000: ? 3 0c000004: ? 2 0c000008: ? md 0x0c c000000: nm The nm command modifies memory at the address until you abort it by Ctrl+c. If you set the optional [.b.w.l ] explicitly, the optional must follow md command and there are no spaces between them.(eg nm.b 0x0c ). help nm nm [.b,.w,.l] address - memory modify, read and keep address nm 0x0c c000000: ? 1 0c000000: ? c000000: ? md 0x0c c000000: E# cp Copying data from source address to destination address according to the counter value. If you set the optional [.b.w.l] explicitly, the optional must follow md command and there are no spaces between them (eg cp.b 0 0x0c ). help cp cp [.b,.w,.l] source target count - copy memory cp.b 0 0x0c md.b 0x0c c000000: md.b : MICETEK International Inc., 16/28

17 cmp Comparing data of addr1 with data of addr2 to an extent of count value. If you set the optional [.b.w.l ] explicitly, the optional must follow cmp command and there are no spaces between them(e.g. cmp.b 0x0c ). help cmp cmp [.b,.w,.l] addr1 addr2 count - compare memory cmp 0 0x0c Total of 2 words were the same crc32 Calculating crc32 checksum. help crc32 crc32 address count - compute CRC32 checksum crc32 0c0x0c CRC32 for c c1 ==> e erase Erasing the contents of Flash memory. There are 4 ways of erasing. 1) Using address of Flash memory. Start and End address should be in the same sector in Flash memory. 2) Using sector numbers of Flash memory. N means the bank value. We have one bank for Flash memory, N is 1. 3) Using bank number. There is only one bank for flash memory, so bank value should always be 1 in current board. 4) Erasing full flash memory. MICETEK International Inc., 17/28

18 help erase erase start end - erase FLASH from addr 'start' to addr 'end' erase N:SF[-SL] - erase sectors SF-SL in FLASH bank # N erase bank N - erase FLASH bank # N erase all - erase all FLASH banks flinfo This shows the information about flash memories in EV44b0-II board. When you put the command flinfo, you can get the following information: current memory types, sizes, and addresses for each sector. In the below figure, the symbol (RO) means read-only. The memory space of ready-only can include MBL code and environment variables. help flinfo flinfo - print information for all FLASH memory banks flinfo N - print information for FLASH memory bank # N flinfo Bank # 1: FUJITSU: MBM29LV160TE (16Mbit) Size: 2 MB in 35 Sectors Sector Start Addresses: (RO) (RO) (RO) A B C D E F A B C D E F F FA FC protect It can decide whether each sector of flash memory is read-only or writable. The usage is similar to `erase command. Protect on can set each sector read-only. Contrary protect off can set each sector writable. And the address start and end must lie in the same sector. MICETEK International Inc., 18/28

19 help protect protect on start end - protect FLASH from addr 'start' to addr 'end' protect on N:SF[-SL] - protect sectors SF-SL in FLASH bank # N protect on bank N - protect FLASH bank # N protect on all - protect all FLASH banks protect off start end - make FLASH from addr 'start' to addr 'end' writable protect off N:SF[-SL] - make sectors SF-SL writable in FLASH bank # N protect off bank N - make FLASH bank # N writable protect off all - make all FLASH banks writable protect on ffff Protected 1 sectors bdinfo It gives us the current board information: MAC address, IP address, serial baud rate, architecture number, address of environment table, boot parameters, the address of RAM which stores environment variables, and SDRAM address after remapping. bdinfo enetaddr = 08:00:3E:21:C7:F8 ip_addr = baudrate = bps arch_number = 189 env_t = 0C boot_params = DRAM:00.start = 0C DRAM:00.size = iminfo It gives us the information of MBL image. You can usually use this command when you want to confirm whether the download image is correct after you download MBL image by tftp. MICETEK International Inc., 19/28

20 help iminfo iminfo addr [addr...] - print header information for application image starting at address 'addr' in memory; this includes verification of the image contents (magic number, header and payload checksums) mtest It is the memory test command by writing/reading data in address 7Mb space from 0x0c If you abort it, please press Ctrl+c. mtest Writing: , Reading: Writing: , Reading: Writing: , Reading: Writing: , Reading: Writing: , Reading: Writing: , Reading: Writing: , Reading: usb The usb command is that by the USB port you may download a bin file to the specified address. The default address is 0x0c Input usb, the following information will occur. help usb usb [load addr] [verbose level], '0' for no debug, '1' for print some debug info... usb Ev44B0II USB driver v /01/09 Qinwei, MICETEK Shanghai Open USB Port! And then, by hand open ev44b0ii CD\usb\UsbDownload.exe; open open bin file dialog box. Select a bin file and click ok (the optional verify means whether verify download image or not). When the downloading procedure is successful, select exit to close the dialog. And then input go 0x0c to run the downloaded bin file. The following information is closely to the above. MICETEK International Inc., 20/28

21 Download file name: "C:\Documents and Settings\administrat..." File length: Load address: 0x0C Loading(without verify):...download OK. Close USB Port! go 0x0c S3C44B0X Test Program Ver 0.00 rsyscfg=0xe MCLK= :Touch Panel 1:Cache 2:keyboard 3:UART 0 4:UART 0 FIFO 5:UART 1 6:UART 1 FIFO 7:USB TEST 8:etnernet test 9:SLOW Mode 10:HOLD Mode 11:STOP Mode 12:Zdma0 13:Zdma1 14:WDTimer 15:RTC(display) 16:RTC(Test) 17:RTC Tick 18:IIC(KS24C080) 19:RecIIS_uda :IIS(uda1341) 21:Etc... 22:Change PLL 23:Test AFC(Tx) 24:Test AFC(Rx) 25:flash writer 20ef,1f,3f,SAT,3f:7f:60 Select the function to test? Now you may test the listing options (About how to test EV44b0II, please refer EV44B0 test manual). If you want to return, please press reset button on the EV44b0-II board icache Instruction cache is enabled or disabled by its switch. help icache icache [on, off] - enable or disable instruction cache icache on Instruction Cache is ON dcache Data cache is enabled or disabled by its switch. help dcache dcache [on, off] - enable or disable data (writethrough) cache dcache off Data (writethrough) Cache is OFF MICETEK International Inc., 21/28

22 reset It is the command that reloads the MBL code. And its function is similar to press reset button on the EV44b0-II board. reset Welcome to MICETEK World! M(icetek)B(oot)L(oader) v1.0.2 (Jan :43:45) MBL code range: 0x0c > 0x0c71764c DRAM Configuration: Bank #0: start 0x0c MB FLASH Configuration: Bank: 2 MB Hit any key to stop autoboot: sleep It is the command that makes system in sleep status for designated seconds. It can increase the system stability for us to insert this command among commands. help sleep sleep N - delay execution for N seconds (N is _decimal_!!!) sleep version It displays the version information. help version version - No help available. version M(icetek)B(oot)L(oader) v1.0.2 (Jan :43:45) MICETEK International Inc., 22/28

23 go It is an instruction to move PC (program counter) to an assigned address with parameter. Its sample refers to usb command. go 0? Welcome to MICETEK World! M(icetek)B(oot)L(oader) v1.0.2 (Jan :43:45) MBL code range: 0x0c > 0x0c71764c DRAM Configuration: Bank #0: start 0x0c MB FLASH Configuration: Bank: 2 MB Hit any key to stop autoboot: run When this command is typed to environments variable, it is operated as a run command. printenv bootargs=devfs=mount root=ramfs console=ttys0, bootcmd=tftp;go 0x0c baudrate= ethaddr=08:00:3e:21:c7:f8 ipaddr= serverip= netmask= bootfile="linux_bootram.bin" loadaddr=0x0c bootdelay=4 Environment size: 243/65532 bytes run bootcmd EV44B0II ethernet driver v /01/08 by Qinwei, MICETEK Shanghai In environments variable, tftp;go 0x0c indicates bootcmd. Therefore, run bootcmd executes tftp and go 0x0c With this function, the user can make batch function for a useful command bootm bootm loads linux kernel to memory and then move PC to execute kernel. It interprets MBL image to detect the addresses of loaded image and TEXT executed. At first, after making MBL image in Host, copy it to tftpboot. MICETEK International Inc., 23/28

24 ~/MBL/tools]$ mkimage.sh linux.bin.gz gzip mkimage -A arm -O linux -T kernel -C gzip -a e n uclinux - d linux.bin.gz linux.bin.gz.img Image Name: uclinux Created: Tue Jul 30 14:16: Image Type: ARM Linux Kernel Image (gzip compressed) Data Size: Bytes = kb = 0.45 MB Load Address: 0x Entry Point: 0x Header Checksum: 0x12c58ed7 Data Checksum: 0x67e26ade [jipark@laminaz ~/MBL/tools]$ cp linux.bin.gz.img /tftpboot In target, it downloading the compressed image and then executes bootm as a parameter with the received address. tftp linux.bin.gz.img BootFile [linux.bin.gz.img], Load addr [0x500000] ARP broadcast 1 eth addr: 00:03:47:e0:87:a2 Got good ARP - start TFTP Server ethernet address 00:03:47:e0:87:a2 TFTP from server ; our IP address is Filename 'linux.bin.gz.img'. Load address: 0x Loading: ********************T**************************************** ***********************done Bytes transferred = (720d4 hex) bootm ## Booting image at Image Name: uclinux Image Type: ARM Linux Kernel Image (gzip compressed) Data Size: Bytes = 456 kb = 0 MB Load Address: Entry Point: Verifying Checksum... OK Uncompressing Kernel Image... OK No initrd ## Transferring control to Linux (at address )... Starting kernel... Linux version uc0 (root@laminaz) (gcc version (release)) # :33:54 KST bootd This command executes a script. By default, i.e., run 'bootcmd' MICETEK International Inc., 24/28

25 bootd EV44B0II ethernet driver v /01/08 by Qinwei, MICETEK Shanghai bootp Boot image via network using BootP/TFTP protocol help bootp bootp [loadaddress] [bootfilename] Tftpboot The tftpboot command is same with tftp. Its function is download the file assigned and save it to memory. tftp linux.bin.gz.img BootFile [linux.bin.gz.img], Load addr [0x500000] ARP broadcast 1 eth addr: 00:03:47:e0:87:a2 Got good ARP - start TFTP Server ethernet address 00:03:47:e0:87:a2 TFTP from server ; our IP address is Filename 'linux.bin.gz.img'. Load address: 0x Loading: ************************************************************ ********TT****************T******************done Bytes transferred = (720d4 hex) The first parameter is the address of the memory to save. The address is Hexadecimal. The second parameter is the file name to be received from tftp server. The * display during the file receiving, and T means time out. To cancel download, type Ctrl+c rarpboot Boot image via network using RARP/TFTP protocol help rarpboot rarpboot [loadaddress] [bootfilename] MICETEK International Inc., 25/28

26 loadb This command is useful to download the file when you have no ethernet. This uses Kermit protocol. The first argument is the address where the program will be downloaded. The process is described as follows: First, input loadb 0x0c and press Enter. Second, select the send item from transfer menu. Third, from the pop dialog select an input file and Kermit protocol and send it. help loadb loadb [ off ] [ baud ] - load binary file over serial line with offset 'off' and baudrate 'baud' loadb 0x0c ## Ready for binary (kermit) download... ## Start Addr = 0x0c The figure shows the screen shot of PC when you send the file using Kermit loads The executing procedure of this command is similar to that of loadb, the file to load must be S-Record file. help loads loads [ off ] - load S-Record file over serial line with offset 'off' loads 0x0c ## Ready for S-Record download... <INTERRUPT> MICETEK International Inc., 26/28

27 autoscr Run script from memory help autoscr autoscr [addr] - run script starting at addr. A valid autoscr header must be present base Print or set address offset help base base - print address offset for memory commands base off - set address offset for memory commands to 'off' base Base Address: 0x base 0x Base Address: 0x base 0x Base Address: 0x base off Base Address: 0x base Base Address: 0x echo Echo args to console help echo echo [args..] - echo args to console; \c suppresses newline MICETEK International Inc., 27/28

28 Update MBL or Save user program on FlashROM Boot up MBL, use tftp 0x0c EV44B0_MBL.bin command to load the bin file to default address, then use update 0x0 to save the downloaded file to 0x0(flash start address). And you also can use update 0x to save the downloaded to 0x10000(for save user program on flash). Welcome to MICETEK World! M(icetek)B(oot)L(oader) v1.0.2 (Jan :09:41) MBL code range: 0x0c > 0x0c717a98 DRAM Configuration: Bank #0: start 0x0c MB FLASH Configuration: Bank: 2 MB Hit any key to stop autoboot: 0 tftp 0x0c EV44B0_MBL.bin EV44B0II ethernet driver v /01/08 by Qinwei, MICETEK Shanghai ARP broadcast 1 Server eth addr: 00:05:5d:60:f8:bc TFTP from server ; our IP address is Filename 'EV44B0_MBL.bin'. Load address: 0xc Loading: ***************** done Bytes transferred = (144f1 hex) update 0x0 Erasing sector 0... ok. Erasing sector 1... ok. Saving Image to Flash...done. update 0x Erasing sector ok. Erasing sector ok. Saving Image to Flash...done. flinfo Bank # 1: FUJITSU: MBM29LV160TE (16Mbit) Size: 2 MB in 35 Sectors Sector Start Addresses: (RO) (RO) (RO) A B C D E F (RO) (RO) A B C D E F F FA FC000 MICETEK International Inc., 28/28

Getting Started U-boot

Getting Started U-boot Getting Started U-boot Document Description Keywords Abstract U-boot, lpc2294 This document is a simple user guide for how to use u-boot on lpc2294 mcu: setup u-boot and toolkit; make and program the image

More information

U-boot quick start guide

U-boot quick start guide Rev. 01 15 February 2007 User guide Document information Info Keywords Abstract Content U-boot, LPC2294, LPC2292, LPC2290/01, LPC2220, LPC2214, LPC2212, LPC2210/01 This document is a simple user guide

More information

DNP/2110 Linux Starter Kit: First Steps

DNP/2110 Linux Starter Kit: First Steps DNP/2110 Linux Starter Kit: First Steps The DIL/NetPC DNP/2110 starter kit contains everything you need to get started with your Intel PXA255 Xscale-based embedded networking application. The starter kit

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

Use U-Boot. U-Boot Main Commands. U-Boot script capability

Use U-Boot. U-Boot Main Commands. U-Boot script capability Use U-Boot U-Boot Main Commands setenv this command is used to set variables saveenv this command saves variables previously set in the environment permanent storage space printenv this command print the

More information

phycore -XScale/PXA270 Development Kit (KPCM-027) Loading a Linux Image (demo.img)

phycore -XScale/PXA270 Development Kit (KPCM-027) Loading a Linux Image (demo.img) phycore -XScale/PXA270 Development Kit (KPCM-027) Loading a Linux Image (demo.img) This Application Note provides instructions on how to start-up the phycore-pxa270, download U-Boot to the phycore-pxa270

More information

9.5.1 Compiling and Installing

9.5.1 Compiling and Installing kernel by the same name as the previous item from the first partition of the first hard disk, hd0. For each configuration, the root= option indicates the device where the booting kernel will find its root

More information

How to download a new Linux O/S Image File

How to download a new Linux O/S Image File How to download a new Linux O/S Image File The DIL/NetPC DNP/9200 U-Boot boot loader offers a set of features for download a new Linux O/S image file to the flash memory. This document describes the download

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

U-Boot Reference Manual

U-Boot Reference Manual U-Boot Reference Manual 90000852_C Digi International Inc. 2007. All Rights Reserved. The Digi logo is a registered trademark of Digi International, Inc. All other trademarks mentioned in this document

More information

GE863-PRO3 U-BOOT Software User Guide. 1VV Rev

GE863-PRO3 U-BOOT Software User Guide. 1VV Rev GE863-PRO3 U-BOOT Software User Guide DISCLAIMER The information contained in this document is the proprietary information of Telit Communications S.p.A. and its affiliates ( TELIT ). The contents are

More information

How to Recover the OS7030

How to Recover the OS7030 How to Recover the OS7030 What you will need: - You will need to make up a serial cable to connect to the SIO connector inside the OS7030. PC serial port OS7030 SIO Connector 9 Pin D Sub Female connector

More information

400AP Application Note Uploading Firmware Images to 400AP NAND Flash Models

400AP Application Note Uploading Firmware Images to 400AP NAND Flash Models June 2014 400AP Application Note Uploading Firmware Images to 400AP NAND Flash Models Author: Thomas W. Heck, Sr. Design Engineer Janus Remote Communications Table of Contents Overview..................................................................................

More information

Bootloader commands - Openmoko

Bootloader commands - Openmoko Wiki Docs Planet Projects Lists Bootloader commands From Openmoko English عربي Български Česky Deutsch Eesti Español فارسی suomi Français Ελληνικά עברית Magyar Italiano 日本語 한국어 Nederlands Polski Português

More information

Installation guide for Arcturus Networks Inc.'s uclinux release

Installation guide for Arcturus Networks Inc.'s uclinux release Installation guide for Arcturus Networks Inc.'s uclinux release 1 Mount the ISO image or the CD to /mnt mount -o loop uclinux-dist-2008-feb-05-r0-release.iso /mnt 2 Install tool chains Go to the /mnt directory

More information

ADS U-boot User's Manual. Applied Data Systems Old Columbia Road Columbia MD, USA

ADS U-boot User's Manual. Applied Data Systems Old Columbia Road Columbia MD, USA ADS U-boot User's Manual ADS document # 110010-40011 Applied Data Systems www.applieddata.net 10260 Old Columbia Road Columbia MD, 21046 USA 301-490-4007 c2005 ADS August 11, 2005 ADS U-boot Bootloader

More information

Release Notes of the QNX BSP for AMCC PPC440 EP/GR Evaluation Kit (EVK) Trunk#

Release Notes of the QNX BSP for AMCC PPC440 EP/GR Evaluation Kit (EVK) Trunk# Release Notes of the QNX 6.4.0 BSP for AMCC PPC440 EP/GR Evaluation Kit (EVK) Trunk# System requirements# Target system QNX Neutrino RTOS 6.4.0 Board version: AMCC PPC440 EP (Yosemite) and AMCC PPC440

More information

UPGRADING THE ARCTIC FIRMWARE

UPGRADING THE ARCTIC FIRMWARE Viola Systems Ltd. tel +358-(0)201-226 226 Lemminkäisenkatu 14-18B fax +358-(0)201-226 220 FIN-20520, Turku e-mail support@violasystems.com Finland APPLICATION NOTE VA-09-5-2 UPGRADING THE ARCTIC FIRMWARE

More information

Linux Port to LatticeMico32 System Quick-Start Guide

Linux Port to LatticeMico32 System Quick-Start Guide Linux Port to LatticeMico32 System Quick-Start Guide Lattice Semiconductor Corporation 5555 NE Moore Court Hillsboro, OR 97124 (503) 268-8000 February 2008 Copyright Copyright 2008 Lattice Semiconductor

More information

**Note that this must be run from a PC on the same network segment as the NetBotz device, and the NetBotz device MUST be connected to the network.

**Note that this must be run from a PC on the same network segment as the NetBotz device, and the NetBotz device MUST be connected to the network. **Note that this must be run from a PC on the same network segment as the NetBotz device, and the NetBotz device MUST be connected to the network.** 1. Download the correct drivers for the USB to Serial

More information

GM8126 LINUX. User Guide Rev.: 0.1 Issue Date: January 2011

GM8126 LINUX. User Guide Rev.: 0.1 Issue Date: January 2011 GM8126 LINUX User Guide Rev.: 0.1 Issue Date: January 2011 REVISION HISTORY Date Rev. From To Jan. 2011 0.1 - Original Copyright 2011 Grain Media, Inc. All Rights Reserved. Printed in Taiwan 2011 Grain

More information

UPGRADING ARCTIC CONTROL S FIRMWARE

UPGRADING ARCTIC CONTROL S FIRMWARE Viola Systems Ltd. tel +358-(0)201-226 226 Lemminkäisenkatu 14-18A fax +358-(0)201-226 220 FIN-20520, Turku e-mail support@violasystems.com Finland APPLICATION NOTE VA-10-1-2 UPGRADING ARCTIC CONTROL S

More information

U-Boot Reference Manual

U-Boot Reference Manual U-Boot Reference Manual 90000852_F Digi International Inc. 2007. All Rights Reserved. The Digi logo is a registered trademark of Digi International, Inc. All other trademarks mentioned in this document

More information

CPU6901. PCI-104 ARM9 CPU Card. Software Manual (V1.0) 健昇科技股份有限公司 JS AUTOMATION CORP.

CPU6901. PCI-104 ARM9 CPU Card. Software Manual (V1.0) 健昇科技股份有限公司 JS AUTOMATION CORP. CPU6901 PCI-104 ARM9 CPU Card Software Manual (V1.0) 健昇科技股份有限公司 JS AUTOMATION CORP. 新北市汐止區中興路 100 號 6 樓 6F., No.100, Zhongxing Rd., Xizhi Dist., New Taipei City, Taiwan TEL:+886-2-2647-6936 FAX:+886-2-2647-6940

More information

FERGUSON BEAUREGARD. RTU-5000 Configurator User Manual

FERGUSON BEAUREGARD. RTU-5000 Configurator User Manual FERGUSON BEAUREGARD RTU-5000 Configurator User Manual FERGUSON BEAUREGARD RTU-5000 Configurator User Manual The Ferguson Beauregard RTU-5000 Configurator program and manuals are Copyright 1997-2004 by

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

Oxalis Getting Started

Oxalis Getting Started Oxalis Getting Started Document: Document: Getting Started Content of the document: Version: 001 First steps to power up, the board, to run uboot, Creator: ANT/MSB build kernel and boot linux. Date: 01.12.2018

More information

Release Notes for the QNX Neutrino BSP for Freescale P2020DS 1.0.0#

Release Notes for the QNX Neutrino BSP for Freescale P2020DS 1.0.0# Release Notes for the QNX Neutrino 6.4.1 BSP for Freescale P2020DS 1.0.0# 1.System Requirements# Target Requirements 1. QNX Neutrino RTOS 6.4.1 2. Board version: P2020DS - Stingray 3. P2020 processor 4.

More information

DTK2410 Specification

DTK2410 Specification version 1.0 DIGNSYS Inc. FEATURES Hardware DTK2410 reference board Reference board for embedded application SAMSUNG S3C2410 MCU NOR/NAND Flash and SDRAM USB host and device UART interface JTAG interface

More information

Overview for Axxia 5600 and Axxia 6700

Overview for Axxia 5600 and Axxia 6700 Overview for Axxia 5600 and Axxia 6700 Axxia Systems use a 3 stage boot process to initialize the system and allow an operating system to be loaded. 1. The first stage is part of the asic and loads the

More information

Release Notes of QNX Neutrino BSP for Freescale MPC8641D HPCN 1.0.0#

Release Notes of QNX Neutrino BSP for Freescale MPC8641D HPCN 1.0.0# Release Notes of QNX Neutrino 6.4.0 BSP for Freescale MPC8641D HPCN 1.0.0# System requirements# Target system# Board version: Freescale MPC8641D HPCN (argo navis) Reference Board 8 MB of flash U-Boot 1.1.3

More information

1. Conventions in this tutorial Introduction Check and change configuration settings as needed Start Digi ESP...

1. Conventions in this tutorial Introduction Check and change configuration settings as needed Start Digi ESP... This tutorial introduces the power and features of Digi ESP for Embedded Linux as a development environment. It shows how to create a simple Linux application, transfer it to a target development board,

More information

GM8126 U-BOOT. User Guide Rev.: 0.2 Issue Date: May 2011

GM8126 U-BOOT. User Guide Rev.: 0.2 Issue Date: May 2011 GM8126 U-BOOT User Guide Rev.: 0.2 Issue Date: May 2011 REVISION HISTORY Date Rev. From To Apr. 2011 0.1 - Original May 2011 0.2 - Modified Chapters 5 and 8 Added Chapter 7 Copyright 2011 Grain Media,

More information

D120-S3G User s Guide

D120-S3G User s Guide D120-S3G User s Guide GIGABYTE Technology Ltd. Network & Business Unit Table of Contents 1. How to connect console.page 3 to 5 2. Login into Web UI Page 6 to 11 3. GIGABYTE Management Console (IPMI web

More information

Getting Started with PetaLinux SDK

Getting Started with PetaLinux SDK Getting Started with PetaLinux SDK November 26, 2009 Table of Contents Table of Contents...2 About This Guide...3 Related PetaLinux Documents...3 Getting Started...3 Prerequisites...3 Installation...4

More information

Release Notes for the QNX Neutrino BSP for Texas Instruments OMAP5912 OSK Trunk#

Release Notes for the QNX Neutrino BSP for Texas Instruments OMAP5912 OSK Trunk# Release Notes for the QNX Neutrino 6.4.0 BSP for Texas Instruments OMAP5912 OSK Trunk# System requirements# Target system# QNX Neutrino RTOS 6.4.0 Board version: Texas Instruments OMAP5912 OSK ROM Monitor

More information

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission.

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission. INTRODUCTION This manual will guide you through the first steps of getting the SE-8051ICD running with the Crossware 8051 Development Suite and the Atmel Flexible In-System Programming system (FLIP). The

More information

Lenovo RackSwitch G8272. Release Notes. For Networking OS 8.2

Lenovo RackSwitch G8272. Release Notes. For Networking OS 8.2 Lenovo RackSwitch G8272 Release Notes For Networking OS 8.2 Note: Before using this information and the product it supports, read the general information in the Safety information and Environmental Notices

More information

Table of Contents. Cisco Xmodem Console Download Procedure Using ROMmon

Table of Contents. Cisco Xmodem Console Download Procedure Using ROMmon Table of Contents Xmodem Console Download Procedure Using ROMmon...1 Introduction...1 Before You Begin...1 Conventions...1 Prerequisites...1 Components Used...1 Overview...2 Usage...2 Examples...3 Xmodem

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

Release Notes for the QNX Neutrino BSP for Fujitsu Jade-D EVB 1.0.0#

Release Notes for the QNX Neutrino BSP for Fujitsu Jade-D EVB 1.0.0# Release Notes for the QNX Neutrino 6.4.0 BSP for Fujitsu Jade-D EVB 1.0.0# System requirements# Target system# QNX Neutrino RTOS 6.4.0 Board version: Fujitsu Jade-D Evaluation Board (Interface Board PA.4

More information

Open Source Automation Development Lab (OSADL) eg. The OSADL Latency Measurement Box.

Open Source Automation Development Lab (OSADL) eg. The OSADL Latency Measurement Box. Open Source Automation Development Lab (OSADL) eg The OSADL Latency Measurement Box www.osadl.org Table of Contents Getting started with the OSADL Latency Measurement Box 3 General hardware features 3

More information

Lenovo Flex System SI Gb System Interconnect Module. Release Notes. for Networking OS 8.2

Lenovo Flex System SI Gb System Interconnect Module. Release Notes. for Networking OS 8.2 Lenovo Flex System SI4091 10Gb System Interconnect Module Release Notes for Networking OS 8.2 Note: Before using this information and the product it supports, read the general information in the Safety

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

Glomation. Embedded Single Board Computer GESBC-3130S User s Manual

Glomation. Embedded Single Board Computer GESBC-3130S User s Manual Glomation Embedded Single Board Computer GESBC-3130S User s Manual Table of Contents Chapter 1 Introducing the GESBC-3130S Single Board Computer... 4 GESBC-3130S Overview... 4 Advanced Features... 4 LPC-3130...

More information

Lab 3: Basic Device Configuration

Lab 3: Basic Device Configuration Lab 3: Basic Device Configuration University of Jordan Faculty of Engineering & Technology Computer Engineering Department Computer Networks Laboratory 907528 2 Lab 3: Basic Device Configuration **Given

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

W90N745 BSP Quick Start Guide

W90N745 BSP Quick Start Guide W90N745 BSP Quick Start Guide 1 Table of Contents- 1. INTRODUCTION OF THIS DOCUMENT...3 2. SYSTEM REQUIREMENT...3 3. HARDWARE CONNECTION...3 4. UCLINUX BSP INSTALLATION PROCEDURE...4 5. NON-OS BSP INSTALLATION

More information

ZIC2410 User Guide Device-Programmer Software Manual

ZIC2410 User Guide Device-Programmer Software Manual ZIC2410 Series ZIC2410 User Guide Device-Programmer Software Manual 0005-05-08-00-001 (Rev B) Table of Contents 1 INTRODUCTION & PURPOSE... 3 1.1 DEFINITIONS... 3 1.2 REFERENCED DOCUMENTS... 3 1.3 PREREQUISITES...

More information

Technical Description

Technical Description Technical Description Network Interface Card for NTP- and udp/time protocol version 01.00 22.02.99 Company Info hopf_elektronik Nottebohmstr. 41 Post box 1847 58511 Lüdenscheid 58468 Lüdenscheid tel.:

More information

Backup a copy of a router IOS from flash to a TFTP server. Reload the backup IOS software image from a TFTP server into flash on a router.

Backup a copy of a router IOS from flash to a TFTP server. Reload the backup IOS software image from a TFTP server into flash on a router. Lab 5.2.5 Managing IOS Images with TFTP Objective Backup a copy of a router IOS from flash to a TFTP server. Reload the backup IOS software image from a TFTP server into flash on a router. Background/Preparation

More information

Conventions in this tutorial

Conventions in this tutorial This document provides an exercise using Digi JumpStart for Windows Embedded CE 6.0. This document shows how to develop, run, and debug a simple application on your target hardware platform. This tutorial

More information

HT32 Series In-System / In-Application Programmer User Manual

HT32 Series In-System / In-Application Programmer User Manual In-System / In-Application Programmer User Manual Revision: V1.00 Date: July 14, 2011 Table of Contents 1 Introduction... 5 About This Document... 5 HT32 Flash Programmer Overview... 5 ISP and IAP Overview...

More information

Flash Loader Utility for the Z8 Encore! XP MCU

Flash Loader Utility for the Z8 Encore! XP MCU Application Note Flash Loader Utility for the Z8 Encore! XP MCU AN011806-0408 Abstract This application note describes Flash Loader utility for the Zilog s Z8 Encore! XP MCU that can be operated through

More information

MV 4412 Android 4.0 Compilation

MV 4412 Android 4.0 Compilation MV 4412 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MV4412 Android Compilation.doc Date 2012. 7. 12 Satus Working Revision History Date Version Update Descriptions

More information

Lab Managing IOS Images with TFTP Instructor Version 2500

Lab Managing IOS Images with TFTP Instructor Version 2500 Lab 5.2.5 Managing IOS Images with TFTP Instructor Version 2500 Objective Backup a copy of a router IOS from flash to a TFTP server. Reload the backup IOS software image from a TFTP server into flash on

More information

Upgrade 6081RC Firmware

Upgrade 6081RC Firmware 6081RC Upgrade procedure for firmware and CoMon bootloader Date Action Sign-off 1/22/2009 Write initial upgrade procedure for firmware & CoMon bootloader Nathan Meyer 1/27/2009 Edit to simplify procedure

More information

Xmodem Console Download Procedure Using ROMmon

Xmodem Console Download Procedure Using ROMmon Xmodem Console Download Procedure Using ROMmon Contents Introduction Prerequisites Requirements Components Used Conventions Overview Usage Examples Xmodem Procedure for Downloading a Cisco IOS Software

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

RFlasher7. Getting Started and Overview. Document version

RFlasher7. Getting Started and Overview. Document version 7 Getting Started and Overview Document version 080317 Release date March 2008 Contents 1. INTRODUCTION...4 1.1 Overview...4 2. FIRST STEPS WITH RFLASHER...5 2.1 Project options...6 2.2 File loading...7

More information

LS9200 User Guide LinkSprite Technologies, Inc.

LS9200 User Guide LinkSprite Technologies, Inc. LS9200 User Guide LinkSprite Technologies, Inc. 1 / 17 Table of Contents 1. Foreword... 3 2. Features... 3 3. Part and jumper description... 4 Part description... 4 LED and Key description... 4 Jumper

More information

Release Notes for the QNX Neutrino BSP for Texas Instruments DM644X EVM 1.0.0#

Release Notes for the QNX Neutrino BSP for Texas Instruments DM644X EVM 1.0.0# Release Notes for the QNX Neutrino 6.4.0 BSP for Texas Instruments DM644X EVM 1.0.0# System requirements# Target system# QNX Neutrino RTOS 6.4.0 Board version: ti dm644x (Davinci) evm ROM Monitor version

More information

Manual Software Firmware Loader V1.1

Manual Software Firmware Loader V1.1 Manual Software Firmware Loader V1.1 (PC software for Microsoft Windows XP, VISTA, 7, 10) This manual describes the installation of the Firmware Loader PC software and as a support for starting up the

More information

Boot Loader for the Z51F6412 MCU

Boot Loader for the Z51F6412 MCU Boot Loader for the Z51F6412 MCU AN037701-0215 Abstract This application note discusses how to create a boot loader program for the Z51F6412 microcontroller, a member of Zilog s Z8051 Family of Microcontrollers.

More information

AFD4400 Reference Design Board Quick Start

AFD4400 Reference Design Board Quick Start Freescale Semiconductor Document Number: AFD4400-RDBQS Quick Start Rev. 0, 07/2015 AFD4400 Reference Design Board Quick Start 1 Introduction The AFD4400 reference design board (AFD4400-RDB) is a cost-effective,

More information

Configurations for the Layer 3 Switch Router

Configurations for the Layer 3 Switch Router CHAPTER 3 This chapter describes the initial configuration of the Layer 3 switch router and contains the following major sections: Starting Up the Layer 3 Switch Router, page 3-1 Using the Console and

More information

GLOMATION. Embedded Single Board Computer GESBC-9G10 User s Manual

GLOMATION. Embedded Single Board Computer GESBC-9G10 User s Manual GLOMATION Embedded Single Board Computer GESBC-9G10 User s Manual Table of Contents Chapter 1 Introducing the GESBC-9G10 Single Board Computer... 4 GESBC-9G10 Overview... 4 Advanced Features... 4 AT91SAM9G10...

More information

REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX

REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX REAL TIME IMAGE PROCESSING BASED ON EMBEDDED LINUX 1 S. M. GRAMOPADHYE, 2 R. T. PATIL RIT Sakharale Email: sgswapnilsmg328@gmail.com, ramesh.patil@ritindia.edu Abstract: The continuous improvement in development

More information

Firmware Reprogramming Guide

Firmware Reprogramming Guide 8 July. 2016 1 UART Connection Hardware Setup Modules and adaptors may be reprogrammed using the procedure detailed in this document. Normally, our platforms will be delivered with the final firmware already

More information

Configuration Guide. Upgrading AOS Firmware L1-29.1D July 2011

Configuration Guide. Upgrading AOS Firmware L1-29.1D July 2011 61200990L1-29.1D July 2011 Configuration Guide This configuration guide explains how to update your ADTRAN Operating System (AOS) firmware using the AOS Web-based graphical user interface (GUI) with Trivial

More information

GIGABYTE. Software Reference Guide for MP30 (APM) Platform R01. Document Version:

GIGABYTE. Software Reference Guide for MP30 (APM) Platform R01. Document Version: GIGABYTE Software Reference Guide for MP30 (APM) Platform R01 Document Version: R01 1 CONTENTS BASICS SECTION... 3 1.1 Equipment and tools list... 3 1.2 How to make Ubuntu OS image to SD card... 5 1.3

More information

Linux and the "Digital Home Technologies PCB " By: Max Klein Jeremy Lujan Tony Roberts

Linux and the Digital Home Technologies PCB  By: Max Klein Jeremy Lujan Tony Roberts Linux and the "Digital Home Technologies PCB 01070201" By: Max Klein (maxklein@stanford.edu) Jeremy Lujan Tony Roberts Overview The board is from a multimedia console being developed in the early 2000's,

More information

UEIPAC VxWorks User Manual

UEIPAC VxWorks User Manual 27 Renmar Av. Walpole, MA 02081 Web site: www.ueidaq.com E-mail: info@ueidaq.com UEIPAC VxWorks User Manual January 2018 Edition Copyright 2018 United Electronic Industries, Inc. All rights reserved No

More information

ConnectCore 6 U-Boot Customizations. Reference Manual

ConnectCore 6 U-Boot Customizations. Reference Manual ConnectCore 6 U-Boot Customizations Reference Manual Revision history 90001422 Revision Date Description A August, 2014 Initial release B October, 2014 Added SBCv2 support; added carrier board version

More information

EUROScope lite 16FX Reference Manual

EUROScope lite 16FX Reference Manual lite 16FX Reference Manual June 2007 EUROS Embedded Systems GmbH Campestraße 12 D-90419 Nuremberg Germany Fon: +49-911-300328-0 Fax: +49-911-300328-9 Web: www.euros-embedded.com email: support@euros-embedded.com

More information

IntelliServer RAS 2000 TM PowerRack Windows NT Supplement

IntelliServer RAS 2000 TM PowerRack Windows NT Supplement IntelliServer RAS 2000 TM PowerRack Windows NT Supplement 1060 Windward Parkway, Suite 100, Alpharetta, GA, 30005-3992 (USA) (800) 241-3946, Outside U.S./Canada: (770) 625-0000 FAX: (770) 625-0013 email:

More information

Evaluation Board User Guide UG-604

Evaluation Board User Guide UG-604 One Technology Way P.O. Box 9106 Norwood, MA 02062-9106, U.S.A. Tel: 781.329.4700 Fax: 781.461.3113 www.analog.com FEATURES Advantiv EVAL-ADV8003-SMZ-P Video Evaluation Board Inputs: 1 HDMI (non-hdcp),

More information

ROM Monitor. Using ROM Monitor APPENDIX

ROM Monitor. Using ROM Monitor APPENDIX APPENDIX A ROM Monitor This appendix describes the Cisco 805 router ROM monitor. The ROM monitor runs when the router is powered up or reset and helps to initialize the processor hardware and boot the

More information

ECE 598 Advanced Operating Systems Lecture 11

ECE 598 Advanced Operating Systems Lecture 11 ECE 598 Advanced Operating Systems Lecture 11 Vince Weaver http://www.eece.maine.edu/~vweaver vincent.weaver@maine.edu 23 February 2016 Announcements Homework #5 Posted Some notes, discovered the hard

More information

EasyIAP Software Example User s Guide

EasyIAP Software Example User s Guide EasyIAP Software Example User s Guide 2001 Silicon Storage Technology, Inc. S71202-NR-001 7/01 414 The SST logo and SuperFlash are registered trademarks of Silicon Storage Technology, Inc. FlashFlex, In-Application

More information

Release Notes for QNX Neutrino BSP for Renesas SH7785 SDK 1.0.0#

Release Notes for QNX Neutrino BSP for Renesas SH7785 SDK 1.0.0# Release Notes for QNX Neutrino 6.4.0 BSP for Renesas SH7785 SDK 1.0.0# System requirements# Target system# QNX Neutrino RTOS 6.4.0 Board version: renesas sdk7785 board 128M AMD / SPANSION MirrorBit flash

More information

Password Recovery Procedure for the Cisco 801, 802, 803, 804, 805, 811, and 813 Series Routers

Password Recovery Procedure for the Cisco 801, 802, 803, 804, 805, 811, and 813 Series Routers Password Recovery Procedure for the Cisco 801, 802, 803, 804, 805, 811, and 813 Series Routers Document ID: 12732 Contents Introduction Prerequisites Requirements Components Used Related Products Conventions

More information

Developing Environment for Intel Mainstone Board

Developing Environment for Intel Mainstone Board Developing Environment for Intel Mainstone Board Outline Introduction Board Bring-up Running Linux Kernel Building Your Own Linux Kernel Developing Your Own App 1 Introduction :: PXA27x XScale PXA27x Architecture

More information

Copying Files With XMODEM

Copying Files With XMODEM Copying Files With XMODEM What Is XMODEM XMODEM is a simple file transfer protocol which became extremely popular in the early bulletin board system (BBS) market, largely because it was so simple to implement.

More information

Upgrading software. Router software overview. Software upgrade configuration task list

Upgrading software. Router software overview. Software upgrade configuration task list Contents Upgrading software 1 Router software overview 1 Software upgrade configuration task list 1 Upgrading system software from BootWare menu 2 BootWare main menu 2 BootWare submenus 3 Using TFTP/FTP

More information

MV V310 Android 4.0 Compilation

MV V310 Android 4.0 Compilation MV V310 Android 4.0 Compilation Microvision Co., Ltd. Document Information Version 1.0 File Name MVV310 Android Compilation.doc Date 2012. 4. 17 Satus Working Revision History Date Version Update Descriptions

More information

XC866 Getting Started on EasyKit & Toolkits

XC866 Getting Started on EasyKit & Toolkits March 2005 XC866 on EasyKit & Toolkits Page 1 N e v e r s t o p t h i n k i n g. Overview DAvE! This will get you started in using the XC866. KEIL HiTOP XC800_ FLOAD! You will be introduced to the following

More information

Table of Contents. Cisco Password Recovery Procedure for the Catalyst Layer 2 Fixed Configuration and 3550 Series Switches

Table of Contents. Cisco Password Recovery Procedure for the Catalyst Layer 2 Fixed Configuration and 3550 Series Switches es Table of Contents Password Recovery Procedure for the Catalyst Layer 2 Fixed Configuration and 3550 Series Switches...1 Document ID: 12040...1 Introduction...1 Before You Begin...1 Conventions...1 Prerequisites...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

EMW3165 Bootloader Mode Introduction

EMW3165 Bootloader Mode Introduction MiCO Documentation Working Group (MDWG) Track Number: RM1101EN Jenny MXCHIP Co., Ltd Version: 1.1 March 2016 Category: Reference Manual Open Abstract Based on MiCOKit-3165 development board, this document

More information

PC DOWNLOAD UTILITY User Instructions

PC DOWNLOAD UTILITY User Instructions Date: Saturday, November 01, 2003 Version: 2.0c PC DOWNLOAD UTILITY User Instructions 1.0 DESCRIPTION The above screen is from the 2.0 version. Earlier versions are similar except there is no menu. The

More information

Yun Shield User Manual VERSION: 1.0. Yun Shield User Manual 1 / Version Description Date. 0.1 Initiate 2014-Jun-21

Yun Shield User Manual VERSION: 1.0. Yun Shield User Manual 1 / Version Description Date. 0.1 Initiate 2014-Jun-21 Yun Shield User Manual VERSION: 1.0 Version Description Date 0.1 Initiate 2014-Jun-21 1.0 Release 2014-Jul-08 Yun Shield User Manual 1 / 22 Index: 1 Introduction... 3 1.1 What is Yun Shield... 3 1.2 Specifications...

More information

U-boot Porting guide. Saurin Suthar. Dashboard April 2007 Issue

U-boot Porting guide. Saurin Suthar. Dashboard April 2007 Issue U-boot Porting guide Saurin Suthar U-BOOT PORTING GUIDE U-BOOT OVERVIEW u-boot(universal Bootloader) is an open source, multi platform bootloader. u-boot supports interactive commands, environment variables,

More information

Boot Loader. Bootloader

Boot Loader. Bootloader October 2013 Boot Loader A program that is executed upon initial power-up that typically involves a power-on self-test, locating and initializing peripheral devices, and then loading and starting an operating

More information

Xinu on Intel Galileo User Manual

Xinu on Intel Galileo User Manual Xinu on Intel Galileo User Manual Table of Contents Page 1.0 Firmware Update for the Intel Galileo board 2 2.0 Console connection on the Intel Galileo 2 2.1 Background 2 2.2 Serial cable setup for the

More information

Date: Saturday, November 01, SHDesigns Ethernet Downloader for Z-World Rabbit Boards and the Softools Compiler Copyright (c) 2003 SHDesigns

Date: Saturday, November 01, SHDesigns Ethernet Downloader for Z-World Rabbit Boards and the Softools Compiler Copyright (c) 2003 SHDesigns Date: Saturday, November 01, 2003 SHDesigns Ethernet Downloader for Z-World Rabbit Boards and the Softools Compiler Copyright (c) 2003 SHDesigns 1 1.0 INTRODUCTION...... 1 2.0 HOW IT WORKS... 1 2.1 The

More information

[MG245X] OTA(Over The Air) Programmer User s Guide. (No. ADT0106) V1.3

[MG245X] OTA(Over The Air) Programmer User s Guide. (No. ADT0106) V1.3 [MG245X] OTA(Over The Air) Programmer User s Guide (No. ADT0106) V1.3 REVISION HISTORY Version Date Description VER.1.0 2008.4.10 First Version VER.1.1 2009.4.2 VER.1.2 2010.5.18 VER.1.3 2011.2.21 Section

More information

TM Printer Service and Support Utility for Windows Version 2.xx User s Manual (English)

TM Printer Service and Support Utility for Windows Version 2.xx User s Manual (English) TM Printer Service and Support Utility for Windows Version 2.xx User s Manual (English) Rev. B Table of Contents Introduction...1 Purpose of This Manual and Target Users... 1 Composition of This Manual...

More information

Contents. Cortex M On-Chip Emulation. Technical Notes V

Contents. Cortex M On-Chip Emulation. Technical Notes V _ Technical Notes V9.12.225 Cortex M On-Chip Emulation Contents Contents 1 1 Introduction 2 2 Access Breakpoints 3 3 Trace 5 4 NXP LPC 5 4.1 Boot and Memory Remapping 5 4.2 LPC17xx Startup 5 4.1 LPC11A02/04

More information

Maintaining the MGX RPM-PR

Maintaining the MGX RPM-PR APPENDIX A This appendix describes maintenance procedures you might need to perform as your internetworking needs change. It contains the following sections: Reading Front Panel LEDs Recovering a Lost

More information