summaryrefslogtreecommitdiff
path: root/board/matrix_vision/mvblm7/bootscript
diff options
context:
space:
mode:
authorAndre Schwarz <andre.schwarz@matrix-vision.de>2010-05-03 13:22:31 +0200
committerKim Phillips <kim.phillips@freescale.com>2010-05-07 12:20:15 -0500
commitfd194f82d1c30802f0597a3e359fdc03ed397367 (patch)
treecc6cade1984af8b01ca5649dab193f5fc1b9ce38 /board/matrix_vision/mvblm7/bootscript
parent3b439792b0781921c599d8af9bed6a771d295b53 (diff)
downloadu-boot-imx-fd194f82d1c30802f0597a3e359fdc03ed397367.zip
u-boot-imx-fd194f82d1c30802f0597a3e359fdc03ed397367.tar.gz
u-boot-imx-fd194f82d1c30802f0597a3e359fdc03ed397367.tar.bz2
mpc83xx/mvBLM7: add usb commands and cleanup.
Add USB commands. Rename autoscript to bootscript. Add automatic bootscript image generation to makefile. Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'board/matrix_vision/mvblm7/bootscript')
-rw-r--r--board/matrix_vision/mvblm7/bootscript43
1 files changed, 43 insertions, 0 deletions
diff --git a/board/matrix_vision/mvblm7/bootscript b/board/matrix_vision/mvblm7/bootscript
new file mode 100644
index 0000000..dc385fd
--- /dev/null
+++ b/board/matrix_vision/mvblm7/bootscript
@@ -0,0 +1,43 @@
+echo
+echo "==== running autoscript ===="
+echo
+setenv bootdtb bootm \${kernel_boot} \${mv_initrd_addr_ram} \${mv_dtb_addr_ram}
+setenv ramkernel setenv kernel_boot \${loadaddr}
+setenv flashkernel setenv kernel_boot \${mv_kernel_addr}
+setenv cpird cp \${mv_initrd_addr} \${mv_initrd_addr_ram} \${mv_initrd_length}
+setenv bootfromflash run flashkernel cpird ramparam addcons bootdtb
+setenv getdtb tftp \${mv_dtb_addr_ram} \${dtb_name}
+setenv cpdtb cp \${mv_dtb_addr} \${mv_dtb_addr_ram} 0x2000
+setenv rundtb fdt addr \${mv_dtb_addr_ram}\;fdt boardsetup
+setenv bootfromnet tftp \${mv_initrd_addr_ram} \${initrd_name}\;run ramkernel
+if test ${console} = yes;
+then
+setenv addcons setenv bootargs \${bootargs} console=ttyS\${console_nr},\${baudrate}N8
+else
+setenv addcons setenv bootargs \${bootargs} console=tty0
+fi
+setenv set_static_ip setenv ipaddr \${static_ipaddr}
+setenv set_static_nm setenv netmask \${static_netmask}
+setenv set_static_gw setenv gatewayip \${static_gateway}
+setenv set_ip setenv ip \${ipaddr}::\${gatewayip}:\${netmask}
+setenv ramparam setenv bootargs root=/dev/ram0 ro rootfstype=squashfs
+if test ${autoscript_boot} != no;
+then
+ if test ${netboot} = yes;
+ then
+ bootp
+ if test $? = 0;
+ then
+ echo "=== bootp succeeded -> netboot ==="
+ run set_ip
+ run getdtb rundtb bootfromnet ramparam addcons bootdtb
+ else
+ echo "=== netboot failed ==="
+ fi
+ fi
+ run set_static_ip set_static_nm set_static_gw set_ip
+ echo "=== bootfromflash ==="
+ run cpdtb rundtb bootfromflash
+else
+ echo "=== boot stopped with autoscript_boot no ==="
+fi