mirror of
https://github.com/linux-sunxi/meta-sunxi.git
synced 2024-11-08 06:18:22 +01:00
12 lines
423 B
Batchfile
12 lines
423 B
Batchfile
|
# Default to (primary) SD
|
||
|
rootdev=mmcblk0p2
|
||
|
if itest.b *0x28 == 0x02 ; then
|
||
|
# U-Boot loaded from eMMC or secondary SD so use it for rootfs too
|
||
|
echo "U-boot loaded from eMMC or secondary SD"
|
||
|
rootdev=mmcblk1p2
|
||
|
fi
|
||
|
setenv bootargs console=${console} console=tty1 root=/dev/${rootdev} rootwait panic=10 ${extra}
|
||
|
load mmc 0:1 ${fdt_addr_r} ${fdtfile}
|
||
|
load mmc 0:1 ${kernel_addr_r} Image
|
||
|
booti ${kernel_addr_r} - ${fdt_addr_r}
|