summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2015-03-13 18:08:54 +0900
committerTom Rini <trini@konsulko.com>2015-03-28 09:03:08 -0400
commit97ec89e5012510ca0d86e994740eab2e697dd047 (patch)
tree2e55c40267447b85ccb2eb27ca7ea5065d0f83fd /scripts
parent3f54dc48c0579b934eba5cfaeb19fb6c8ddcb9ec (diff)
downloadtalos-obmc-uboot-97ec89e5012510ca0d86e994740eab2e697dd047.tar.gz
talos-obmc-uboot-97ec89e5012510ca0d86e994740eab2e697dd047.zip
kbuild: remove "*_felconfig" target
This target was added by commit cbdd9a9737cc (sunxi: kconfig: Add %_felconfig rule to enable FEL build of sunxi platforms.). At that time, U-Boot used separate .config files for U-Boot proper and SPL. I understood the pain to modify both .config and spl/.config. Now, we have switched to single .config configuration. It seems acceptable to run "make menuconfig" or friends to enable CONFIG_SPL_FEL, as we do for other CONFIGs. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Ian Campbell <ijc@hellion.org.uk> Cc: Hans de Goede <hdegoede@redhat.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/multiconfig.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/multiconfig.sh b/scripts/multiconfig.sh
index cc8a787f88..9c6b256349 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;;
OpenPOWER on IntegriCloud