diff --git a/scripts/multiconfig.sh b/scripts/multiconfig.sh index cc8a787f88602a9d1e88e7b3d4a1515380e1184b..9c6b2563492417665b6ebcbc800f71f6c059245e 100755 --- a/scripts/multiconfig.sh +++ b/scripts/multiconfig.sh @@ -70,16 +70,6 @@ do_board_defconfig () { cleanup_after_defconfig } -do_board_felconfig () { - do_board_defconfig ${1%%_felconfig}_defconfig - if ! grep -q CONFIG_ARCH_SUNXI=y .config || ! grep -q CONFIG_SPL=y .config ; then - echo "$progname: Cannot felconfig a non-sunxi or non-SPL platform" >&2 - exit 1 - fi - sed -i -e 's/\# CONFIG_SPL_FEL is not set/CONFIG_SPL_FEL=y\nCONFIG_UART0_PORT_F=n/g' \ - .config -} - do_others () { run_make_config $1 } @@ -90,8 +80,6 @@ target=$1 case $target in *_defconfig) do_board_defconfig $target;; -*_felconfig) - do_board_felconfig $target;; *_config) # backward compatibility do_board_defconfig ${target%_config}_defconfig;;