mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-03 00:11:06 +02:00
build the kmod-video-quickcam module only if it was selected
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10881 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2961761854
commit
b9c0ebdb06
@ -58,7 +58,8 @@ ifeq ($(KERNEL),2.4)
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define Build/Compile
|
ifneq ($(CONFIG_PACKAGE_kmod-video-quickcam),)
|
||||||
|
define Build/Compile/kmod
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
LINUX_DIR="$(LINUX_DIR)" \
|
LINUX_DIR="$(LINUX_DIR)" \
|
||||||
ARCH="$(LINUX_KARCH)" \
|
ARCH="$(LINUX_KARCH)" \
|
||||||
@ -67,11 +68,20 @@ define Build/Compile
|
|||||||
LD="$(TARGET_CC) -nodefaultlibs -nostartfiles" \
|
LD="$(TARGET_CC) -nodefaultlibs -nostartfiles" \
|
||||||
USER_OPT="$(KERNEL_C_OPTS)" \
|
USER_OPT="$(KERNEL_C_OPTS)" \
|
||||||
quickcam.$(LINUX_KMOD_SUFFIX)
|
quickcam.$(LINUX_KMOD_SUFFIX)
|
||||||
|
endef
|
||||||
|
endif
|
||||||
|
|
||||||
|
define Build/Compile/user
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
CFLAGS="$(TARGET_CFLAGS)" \
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
qcset
|
qcset
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Build/Compile
|
||||||
|
$(call Build/Compile/kmod)
|
||||||
|
$(call Build/Compile/user)
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/qc-usb-utils/install
|
define Package/qc-usb-utils/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/qcset $(1)/usr/bin/
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/qcset $(1)/usr/bin/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user