diff options
Diffstat (limited to 'target/linux/mvebu/image/turris-omnia.bootscript')
-rw-r--r-- | target/linux/mvebu/image/turris-omnia.bootscript | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/target/linux/mvebu/image/turris-omnia.bootscript b/target/linux/mvebu/image/turris-omnia.bootscript new file mode 100644 index 0000000000..fcec5fc1b8 --- /dev/null +++ b/target/linux/mvebu/image/turris-omnia.bootscript @@ -0,0 +1,17 @@ +# Determine root device +setexpr rootpart ${distro_bootpart} + 1 +if test ${devtype} = mmc -a ${devnum} = 0; then + setenv rootdev /dev/mmcblk0p${rootpart} +elif test ${devtype} = scsi -a ${devnum} = 0; then + setenv rootdev /dev/sda${rootpart} +else + # New U-Boot only + part uuid ${devtype} ${devnum}:${rootpart} uuid + setenv rootdev PARTUUID=${uuid} +fi +setenv bootargs earlyprintk console=ttyS0,115200 root=${rootdev} rootfstype=auto rootwait + +# Load and boot +load ${devtype} ${devnum}:${distro_bootpart} ${fdt_addr_r} @DTB@.dtb +load ${devtype} ${devnum}:${distro_bootpart} ${kernel_addr_r} zImage +bootz ${kernel_addr_r} - ${fdt_addr_r} |