u-boot: remove kirkwood kernel detection from bootscript

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2020-02-20 12:21:28 +01:00
parent 8569b3e11b
commit 777ba8192c
2 changed files with 3 additions and 7 deletions

View 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

Binary file not shown.