diff options
author | Rob Herring <rob.herring@calxeda.com> | 2012-01-09 17:01:53 -0600 |
---|---|---|
committer | John Rigby <john.rigby@linaro.org> | 2012-02-07 17:03:52 -0800 |
commit | 44deec8002e0123d0bbc4c55b209451dab549caf (patch) | |
tree | 204c81768fd1f0efd9ac988e0f820722347de1c8 | |
parent | 575f67e5dc76af2ec520e74d3eb1b5b262042d0f (diff) | |
download | u-boot-linaro-stable-44deec8002e0123d0bbc4c55b209451dab549caf.tar.gz |
ARM: highbank: add autoboot script files
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
-rw-r--r-- | board/highbank/scripts/autoboot.txt | 17 | ||||
-rw-r--r-- | board/highbank/scripts/diskboot.txt | 2 |
2 files changed, 19 insertions, 0 deletions
diff --git a/board/highbank/scripts/autoboot.txt b/board/highbank/scripts/autoboot.txt new file mode 100644 index 000000000..0e4ee7936 --- /dev/null +++ b/board/highbank/scripts/autoboot.txt @@ -0,0 +1,17 @@ +bootcmd_pxe=dhcp; pxe get; pxe boot +bootcmd_disk=ext2load ${boot_ifc} ${bootdevice} 0x100000 boot.scr; source 0x100000 +bootcmd_sata=setenv boot_ifc scsi; run bootcmd_disk +bootcmd_mmc=setenv boot_ifc mmc; run bootcmd_disk +bootcmd0=run bootcmd_sata; run bootcmd_pxe +bootcmd1=run bootcmd_pxe +bootcmd2=run bootcmd_sata +bootcmd15=run bootcmd_mmc +bootdevice=0:1 +bootargs=console=ttyAMA0,38400n8 root=LABEL=rootfs rootwait +bootdelay=1000 +netretry=once +fdt_addr=0x1000 +pxefile_addr_r=0x700000 +kernel_addr_r=0x800000 +ramdisk_addr_r=0x01000000 + diff --git a/board/highbank/scripts/diskboot.txt b/board/highbank/scripts/diskboot.txt new file mode 100644 index 000000000..4fe67b779 --- /dev/null +++ b/board/highbank/scripts/diskboot.txt @@ -0,0 +1,2 @@ +ext2load ${boot_ifc} ${bootdevice} ${kernel_addr_r} uImage; ext2load ${boot_ifc} ${bootdevice} ${ramdisk_addr_r} uInitrd; bootm ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr} + |