]> git.sur5r.net Git - u-boot/commitdiff
board: Adjust K+P script to run misc (per board) adjustments
authorLukasz Majewski <lukma@denx.de>
Sun, 20 May 2018 06:33:15 +0000 (08:33 +0200)
committerStefano Babic <sbabic@denx.de>
Mon, 18 Jun 2018 14:42:04 +0000 (16:42 +0200)
This change gives the opportunity to adjust Linux command line for the
imx53 device with some legacy data.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
board/k+p/bootscripts/tpcboot.cmd

index eac79dc890fcb7c9ee401821ccb355e12a429f8e..16b93ebe3f778acad9142370cb1163e2e561aa86 100644 (file)
@@ -23,6 +23,10 @@ setenv mmcroot "/dev/mmcblk${devnum}p2 rootwait rw"
 setenv displayargs ""
 setenv mmcargs "setenv bootargs console=${console} ${smp} root=${mmcroot} \
        ${displayargs}"
+setenv miscadj "
+if test '${boardsoc}' = 'imx53'; then
+       setenv bootargs '${bootargs} di=${dig_in} key1=${key1}';
+fi;"
 setenv boot_fitImage "
        setenv fdt_conf 'conf@${boardsoc}-${boardname}.dtb';
        setenv itbcfg "\"#\${fdt_conf}\"";
@@ -39,6 +43,7 @@ if test -e ${devtype} ${devnum}:${distro_bootpart} ${kernel_file}; then
        if load ${devtype} ${devnum}:${distro_bootpart} ${loadaddr} \
           ${kernel_file}; then
                run mmcargs;
+               run miscadj;
                run boot_fitImage;
        fi;
 fi;"
@@ -52,6 +57,7 @@ setenv download_kernel "tftpboot ${loadaddr} ${kernel_file}"
 setenv boot_tftp_kernel "
 if run download_kernel; then
        run mmcargs;
+       run miscadj;
        run boot_fitImage;
 fi"