1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-04 23:07:28 +03:00

disable package that can't build on atheros target (no pci/usb)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8823 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2007-09-17 02:04:38 +00:00
parent 339b3093c8
commit f07284d46f
2 changed files with 6 additions and 2 deletions

View File

@ -92,9 +92,11 @@ endef
$(eval $(call KernelPackage,lp)) $(eval $(call KernelPackage,lp))
# XXX: remove @!TARGET_* later when we have PCI & USB support properly detected on all targets
define KernelPackage/soundcore define KernelPackage/soundcore
SUBMENU:=$(OTHER_MENU) SUBMENU:=$(OTHER_MENU)
TITLE:=Sound support TITLE:=Sound support
DEPENDS:=@PCI_SUPPORT||USB_SUPPORT @!TARGET_atheros
KCONFIG:= \ KCONFIG:= \
CONFIG_SOUND \ CONFIG_SOUND \
CONFIG_SND \ CONFIG_SND \
@ -238,10 +240,11 @@ endef
$(eval $(call KernelPackage,pcmcia-serial)) $(eval $(call KernelPackage,pcmcia-serial))
# XXX: remove @!TARGET_* later when we have USB support properly detected on all targets
define KernelPackage/bluetooth define KernelPackage/bluetooth
SUBMENU:=$(OTHER_MENU) SUBMENU:=$(OTHER_MENU)
TITLE:=Bluetooth support TITLE:=Bluetooth support
DEPENDS:=@USB_SUPPORT DEPENDS:=@USB_SUPPORT @!TARGET_atheros
KCONFIG:= \ KCONFIG:= \
CONFIG_BLUEZ \ CONFIG_BLUEZ \
CONFIG_BLUEZ_L2CAP \ CONFIG_BLUEZ_L2CAP \

View File

@ -25,10 +25,11 @@ ifeq ($(DUMP),)
include $(LINUX_DIR)/.config include $(LINUX_DIR)/.config
endif endif
# XXX: remove @!TARGET_* later when we have PCI & USB support properly detected on all targets
define KernelPackage/rt2x00/Default define KernelPackage/rt2x00/Default
SUBMENU:=Wireless Drivers SUBMENU:=Wireless Drivers
TITLE:=Ralink Drivers for RT2x00 cards TITLE:=Ralink Drivers for RT2x00 cards
DEPENDS:=@LINUX_2_6 DEPENDS:=@LINUX_2_6 @!TARGET_atheros
KCONFIG:=CONFIG_MAC80211 KCONFIG:=CONFIG_MAC80211
endef endef