mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-22 11:13:07 +00:00
14 lines
384 B
Text
14 lines
384 B
Text
|
# MMC boot command
|
||
|
bootcmd_mmc=load mmc 0:1 ${loadaddr} kernel.itb; bootm
|
||
|
|
||
|
# Network boot command and vars
|
||
|
bootcmd_net=dhcp; tftpboot ${loadaddr} kernel.itb; bootm
|
||
|
autoload=no
|
||
|
serverip=192.168.0.1
|
||
|
|
||
|
# U-Boot will run this after loading this file
|
||
|
bootcmd_txt=run bootcmd_mmc
|
||
|
|
||
|
# Kernel cmdline
|
||
|
bootargs=cma=256M console=ttyS1,115200 root=/dev/mmcblk0p3 rootflags=subvol=root rw rootwait
|