mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
7131514ca6
Instead of cluttering up a header file with a bunch of defines, move the default environmental variables to a file called imx8mn_beacon.env and reference it from the defconfigs. Signed-off-by: Adam Ford <aford173@gmail.com>
25 lines
1.6 KiB
Bash
25 lines
1.6 KiB
Bash
boot_fdt=try
|
|
bootdelay=2
|
|
bootscript=echo Running bootscript from mmc ...; source
|
|
console=ttymxc1
|
|
fdt_addr=0x45000000
|
|
fdt_file=imx8mn-beacon-kit.dtb
|
|
finduuid=part uuid mmc ${mmcdev}:2 uuid
|
|
image=Image
|
|
initrd_addr=0x46000000
|
|
loadbootscript=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};
|
|
loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}
|
|
loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}
|
|
loadramdisk=load mmc ${mmcdev} ${ramdisk_addr} ${ramdiskimage}
|
|
mmcargs=setenv bootargs console=${console},${baudrate} root=PARTUUID=${uuid} rootwait rw ${mtdparts} ${optargs}
|
|
mmcautodetect=yes
|
|
mmcboot=echo Booting from mmc ...; run finduuid; run mmcargs; if test ${boot_fdt} = yes || test ${boot_fdt} = try; then if run loadfdt; then booti ${loadaddr} - ${fdt_addr}; else echo WARN: Cannot load the DT; fi; else echo wait for boot; fi;
|
|
mmcdev=1
|
|
mmcpart=1
|
|
netargs=setenv bootargs console=${console},${baudrate} root=/dev/nfs ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp
|
|
netboot=echo Booting from net ...; run netargs; if test ${ip_dyn} = yes; then setenv get_cmd dhcp; else setenv get_cmd tftp; fi; ${get_cmd} ${loadaddr} ${image}; if test ${boot_fdt} = yes || test ${boot_fdt} = try; then if ${get_cmd} ${fdt_addr} ${fdt_file}; then booti ${loadaddr} - ${fdt_addr}; else echo WARN: Cannot load the DT; fi; else booti; fi;
|
|
ramargs=setenv bootargs console=${console},${baudrate} root=/dev/ram rw ${optargs}
|
|
ramboot=echo Booting from RAMdisk...; run loadimage; run loadfdt; fdt addr $fdt_addr; run loadramdisk; run ramargs; booti ${loadaddr} ${ramdisk_addr} ${fdt_addr} ${optargs}
|
|
ramdisk_addr=0x46000000
|
|
ramdiskimage=rootfs.cpio.uboot
|
|
script=boot.scr
|