mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-17 16:24:43 +02:00
add missing BuildPackage lines, convert install-dev: to Build/InstallDev
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3857 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
275628fece
commit
c1bae219c1
@ -53,6 +53,5 @@ define Package/tc/install
|
|||||||
install -m0755 $(PKG_BUILD_DIR)/tc/tc $(1)/usr/sbin/
|
install -m0755 $(PKG_BUILD_DIR)/tc/tc $(1)/usr/sbin/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# $(eval $(call BuildPackage,iproute2))
|
$(eval $(call BuildPackage,ip))
|
||||||
# $(eval $(call BuildPackage,ip))
|
$(eval $(call BuildPackage,tc))
|
||||||
# $(eval $(call BuildPackage,tc))
|
|
||||||
|
@ -163,6 +163,22 @@ define Build/Compile
|
|||||||
all install install-devel
|
all install install-devel
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
||||||
|
define Build/InstallDev
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
KERNEL_DIR=$(LINUX_DIR) PREFIX=/usr \
|
||||||
|
DESTDIR="$(STAGING_DIR)" \
|
||||||
|
install install-devel
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/UninstallDev
|
||||||
|
rm -rf $(STAGING_DIR)/usr/include/libipq.h
|
||||||
|
rm -rf $(STAGING_DIR)/usr/lib/libipq.a
|
||||||
|
endef
|
||||||
|
|
||||||
|
|
||||||
define Package/iptables/install
|
define Package/iptables/install
|
||||||
install -d -m0755 $(1)/etc/config
|
install -d -m0755 $(1)/etc/config
|
||||||
install -m0644 ./files/firewall.config $(1)/etc/config/firewall
|
install -m0644 ./files/firewall.config $(1)/etc/config/firewall
|
||||||
@ -223,21 +239,3 @@ $(eval $(call BuildPlugin,iptables-mod-ipsec,$(IPT_IPSEC-m)))
|
|||||||
$(eval $(call BuildPlugin,iptables-mod-nat,$(IPT_NAT-m)))
|
$(eval $(call BuildPlugin,iptables-mod-nat,$(IPT_NAT-m)))
|
||||||
$(eval $(call BuildPlugin,iptables-mod-ulog,$(IPT_ULOG-m)))
|
$(eval $(call BuildPlugin,iptables-mod-ulog,$(IPT_ULOG-m)))
|
||||||
$(eval $(call BuildPackage,ip6tables))
|
$(eval $(call BuildPackage,ip6tables))
|
||||||
|
|
||||||
|
|
||||||
$(STAGING_DIR)/usr/lib/libipq.a: $(PKG_BUILD_DIR)/.built
|
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
|
||||||
CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)" \
|
|
||||||
KERNEL_DIR=$(LINUX_DIR) PREFIX=/usr \
|
|
||||||
DESTDIR="$(STAGING_DIR)" \
|
|
||||||
install install-devel
|
|
||||||
|
|
||||||
install-dev: $(STAGING_DIR)/usr/lib/libipq.a
|
|
||||||
uninstall-dev:
|
|
||||||
rm -rf $(STAGING_DIR)/usr/include/libipq.h
|
|
||||||
rm -rf $(STAGING_DIR)/usr/lib/libipq.a
|
|
||||||
|
|
||||||
compile-targets: install-dev
|
|
||||||
clean-targets: uninstall-dev
|
|
||||||
|
|
||||||
|
@ -26,3 +26,5 @@ define Package/mtd/install
|
|||||||
install -d -m0755 $(1)/sbin
|
install -d -m0755 $(1)/sbin
|
||||||
install -m0755 $(PKG_BUILD_DIR)/mtd $(1)/sbin
|
install -m0755 $(PKG_BUILD_DIR)/mtd $(1)/sbin
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,mtd))
|
||||||
|
@ -28,9 +28,14 @@ define Package/nvram/install
|
|||||||
install -m0755 $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin
|
install -m0755 $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin
|
||||||
endef
|
endef
|
||||||
|
|
||||||
compile-targets: install-dev
|
define Build/InstallDev
|
||||||
install-dev: $(PKG_BUILD_DIR)/.built
|
|
||||||
mkdir -p $(STAGING_DIR)/usr/lib
|
mkdir -p $(STAGING_DIR)/usr/lib
|
||||||
$(CP) $(PKG_BUILD_DIR)/*.so $(STAGING_DIR)/usr/lib
|
$(CP) $(PKG_BUILD_DIR)/*.so $(STAGING_DIR)/usr/lib
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/UninstallDev
|
||||||
|
rm -f $(STAGING_DIR)/usr/lib/libshared*.so \
|
||||||
|
$(STAGING_DIR)/usr/lib/libnvram*.so
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,nvram))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user