]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - config/u-boot/boot.cmd
u-boot: remove kirkwood kernel detection from bootscript
[people/pmueller/ipfire-2.x.git] / config / u-boot / boot.cmd
index b86b6809ae6944561815f67c5bf439606849cb85..1c1171bfe9a74c313cb65ee8be42fecdb5fab6bb 100644 (file)
@@ -11,15 +11,11 @@ if test ${boot_part} = ""; then
        setenv boot_part ${dev_num}:1;
 fi;
 
-if test ${soc} = "kirkwood"; then
-       setenv kernel_type -kirkwood;
+if test ${cpu} = "armv8"; then
+       echo ;
 else
-       if test ${cpu} = "armv8"; then
-               echo ;
-       else
-               setenv kernel_type -multi;
+       setenv kernel_type -multi;
        fi;
-fi;
 
 # Import uEnv txt...
 if fatload ${boot_dev} ${boot_part} ${kernel_addr_r} uEnv.txt; then