diff options
author | Hans de Goede <hdegoede@redhat.com> | 2015-05-19 21:44:44 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-05-29 13:46:36 +0200 |
commit | 93fc39a7c3ec5d4ed9f1b75cdbac641c3fe12369 (patch) | |
tree | eeb7c2c10840f09a9cf5581441f9d90666b23571 /arch/arm | |
parent | 813598e3b46601d6dd8d373e689f60f7c60fbb48 (diff) | |
download | u-boot-imx-93fc39a7c3ec5d4ed9f1b75cdbac641c3fe12369.zip u-boot-imx-93fc39a7c3ec5d4ed9f1b75cdbac641c3fe12369.tar.gz u-boot-imx-93fc39a7c3ec5d4ed9f1b75cdbac641c3fe12369.tar.bz2 |
sunxi: Remove support for building "old-fashioned" fel binaries
The latest versions of the fel tool support loading normal u-boot builds
directly, and this is now the preferred way to use the fel boot method.
This commit removes support for the old deprecated standalone fel builds.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/cpu/armv7/sunxi/board.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/arm/cpu/armv7/sunxi/board.c b/arch/arm/cpu/armv7/sunxi/board.c index e6730c0..75ce7b5 100644 --- a/arch/arm/cpu/armv7/sunxi/board.c +++ b/arch/arm/cpu/armv7/sunxi/board.c @@ -120,13 +120,6 @@ void s_init(void) */ u32 spl_boot_device(void) { -#ifdef CONFIG_SPL_FEL - /* - * This is the legacy compile time configuration for a special FEL - * enabled build. It has many restrictions and can only boot over USB. - */ - return BOOT_DEVICE_BOARD; -#else /* * When booting from the SD card, the "eGON.BT0" signature is expected * to be found in memory at the address 0x0004 (see the "mksunxiboot" @@ -147,7 +140,6 @@ u32 spl_boot_device(void) return BOOT_DEVICE_MMC1; else return BOOT_DEVICE_BOARD; -#endif } /* No confirmation data available in SPL yet. Hardcode bootmode */ |