summaryrefslogtreecommitdiff
path: root/board/mvblm7/mvblm7_autoscript
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2008-06-11 21:27:31 +0200
committerWolfgang Denk <wd@denx.de>2008-06-11 21:27:31 +0200
commit2395db48869e759c4422efa3d3c25161601aa17b (patch)
tree4046c04770a56701a4d773bf7d22cc288a9f085f /board/mvblm7/mvblm7_autoscript
parent3c6e979a94c91e0e7f28356622c79784b621cbde (diff)
parent2329fe113d847e43cca8e4a0e4edd613b50b8492 (diff)
downloadu-boot-imx-2395db48869e759c4422efa3d3c25161601aa17b.zip
u-boot-imx-2395db48869e759c4422efa3d3c25161601aa17b.tar.gz
u-boot-imx-2395db48869e759c4422efa3d3c25161601aa17b.tar.bz2
Merge branch 'master' of git://www.denx.de/git/u-boot-mpc83xx
Diffstat (limited to 'board/mvblm7/mvblm7_autoscript')
-rw-r--r--board/mvblm7/mvblm7_autoscript37
1 files changed, 37 insertions, 0 deletions
diff --git a/board/mvblm7/mvblm7_autoscript b/board/mvblm7/mvblm7_autoscript
new file mode 100644
index 0000000..ec6e34e
--- /dev/null
+++ b/board/mvblm7/mvblm7_autoscript
@@ -0,0 +1,37 @@
+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 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
+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 ${autoscr_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 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 autoscr_boot no ==="
+fi