diff options
author | John Crispin <blogic@openwrt.org> | 2015-01-28 12:08:13 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-01-28 12:08:13 +0000 |
commit | 0c61f8d759d71730fae9e1c09086588eb50eebb1 (patch) | |
tree | e848d98d84d619260c68abecc08d365c2a8db9f2 /package/boot | |
parent | b69c905acd098862f9d6ba72531f1f90e38de9f5 (diff) | |
download | upstream-0c61f8d759d71730fae9e1c09086588eb50eebb1.tar.gz upstream-0c61f8d759d71730fae9e1c09086588eb50eebb1.tar.bz2 upstream-0c61f8d759d71730fae9e1c09086588eb50eebb1.zip |
uboot-lantiq: fix P-2812HNU-F1/3 package dependency
After r43987 TARGET_lantiq_xrx200_P2812HNUFX does not exist anymore.
Fix empty menuconfig bootloader selection by making u-boot depend on
one of the new target profiles.
Signed-off-by: Antti Seppälä <a.seppala@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44179 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/boot')
-rw-r--r-- | package/boot/uboot-lantiq/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/boot/uboot-lantiq/Makefile b/package/boot/uboot-lantiq/Makefile index d2b868f5de..d59aac85d5 100644 --- a/package/boot/uboot-lantiq/Makefile +++ b/package/boot/uboot-lantiq/Makefile @@ -247,14 +247,14 @@ define uboot/p2812hnufx_ram TITLE:=U-Boot for ZyXEL P-2812HNU-Fx (RAM) SOC:=vr9 DDR_SETTINGS:=board/zyxel/p2812hnufx/ddr_settings.h - DEPS:=@TARGET_lantiq_xrx200_P2812HNUFX + DEPS:=@TARGET_lantiq_xrx200_P2812HNUF1||@TARGET_lantiq_xrx200_P2812HNUF3 endef define uboot/p2812hnufx_nandspl TITLE:=U-Boot for ZyXEL P-2812HNU-Fx (NAND SPL) SOC:=vr9 IMAGE:=u-boot.ltq.lzo.nandspl - DEPS:=@TARGET_lantiq_xrx200_P2812HNUFX + DEPS:=@TARGET_lantiq_xrx200_P2812HNUF1||@TARGET_lantiq_xrx200_P2812HNUF3 endef |