Difference between revisions of "Didj Boot From UART"

From eLinux.org
Jump to: navigation, search
(Files Needed)
(Software Needed)
Line 1: Line 1:
 
This explains how to boot your Didj over a UART connection, using the standard lighting-boot.bin uboot.bin and kernel image.
 
This explains how to boot your Didj over a UART connection, using the standard lighting-boot.bin uboot.bin and kernel image.
  
== Software Needed ==
+
== Software Needed ==  
  
[https://sites.google.com/site/jrspruitt/downloads/lightning-boot-1.4.tar.bz2?attredirects=0&d=1 Lightning-boot 1.4+]
+
[[Didj_Lightning_Boot | Lightning-boot 1.4+]]
  
[https://sites.google.com/site/jrspruitt/downloads/u-boot.bin?attredirects=0&d=1 u-boot]
+
[[Didj_uboot | u-boot]]
  
Terminal program(s) - (ex: Tera Term) that can send plain binary, xmodem and kermit
+
Terminal program(s) - (ex: cutecom) that can send plain binary, xmodem and kermit
  
 
zImage kernel file for Didj Linux
 
zImage kernel file for Didj Linux

Revision as of 16:54, 18 June 2011

This explains how to boot your Didj over a UART connection, using the standard lighting-boot.bin uboot.bin and kernel image.

Software Needed

Lightning-boot 1.4+

u-boot

Terminal program(s) - (ex: cutecom) that can send plain binary, xmodem and kermit

zImage kernel file for Didj Linux

Programs Needed

Terminal program, Hyperterminal, or equivalent, must be able to send via Plain Text, Xmodem, and Kermit.

Hardware Needed

Ability to make a Serial connection to the UART pins on the Didj, and using a resister, 470 Ohm works well, ability to attach the NAND pins D5 and D6 to ground. Common methods are a breakout board, or soldering wires to the cartridge connector pins.

Getting Started

Make sure you've got your UART connected, and the ability to pull the D5 and D6 pins low. Terminal will be set to 115200 8/n/1 to begin.

Booting Up

Latching the power button

Pull the D6 pin of the NAND Flash low, then boot as normal while watching the output in Terminal, after booting is complete, pull both D5 and D6 low, type command "reboot". Didj will reboot and now you won't have to hold down the power button during the UART boot process. The screen will be blank, and the Didj will look like its off, but its actually just waiting for you to start sending the bootloader.

Starting the UART Boot

Keeping the D5 and D6 of NAND Flash pins low (note: This is for using hyperterminal in windows, your program(s) may very in procedure.)

1. Configure hyperterminal to 19200 8/n/1

2. Make sure UART is connected, and hold down any button on the Didj except the power button.

3. Using Send Text method, switch file type to "all" and load lightning-boot.bin, nothing will be displayed, but usb/rs232 adapter will show activity, if its got an LED to do so.

4. Once loaded, let up on other button. Switch hyperterminal to 115200 8/n/1 and use Xmodem method to send uboot.bin. Press send, then press a button on the Didj to initiate transfer.

5. Once uboot has been sent there'll be a terminal prompt, enter.

LF1000# setenv bootargs mem=18M init=/sbin/init console=ttyS0,115200 root=31:06 ro rootflags=noatime rootfstype=jffs2 ubi.mtd=Brio ubi.mtd=prg_Brio ubi.mtd=Cartridge ubi.mtd=EXT
LF1000# setenv loadaddr 1800000
LF1000# loadb

6. Then send zImage file using Kermit method once finished there will be another terminal prompt, enter.

LF1000# go 1800000

7. Should now see linux kernel uncompressing then booting.

Custom Boot Loaders

Refer to the proper sequence provided by the custom bootloader, as some or all of these steps may be different or unnecessary.