diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-06-18 18:26:00 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-06-18 18:26:00 +0000 |
commit | adbb4c3e335459cffc016f328fdcac44be09ce9a (patch) | |
tree | 95d4517798527d18f9eb211c1eefa9b0a27c87c8 | |
parent | b418646d03619ff973bff5a79b8dad5b03fe6a97 (diff) | |
download | mtk-20170518-adbb4c3e335459cffc016f328fdcac44be09ce9a.zip mtk-20170518-adbb4c3e335459cffc016f328fdcac44be09ce9a.tar.gz mtk-20170518-adbb4c3e335459cffc016f328fdcac44be09ce9a.tar.bz2 |
rename br2684.init to br2684.hotplug, normalize Makefile.
SVN-Revision: 3996
-rw-r--r-- | openwrt/package/linux-atm/Makefile | 31 | ||||
-rw-r--r-- | openwrt/package/linux-atm/files/br2684.hotplug (renamed from openwrt/package/linux-atm/files/br2684.init) | 0 |
2 files changed, 16 insertions, 15 deletions
diff --git a/openwrt/package/linux-atm/Makefile b/openwrt/package/linux-atm/Makefile index 5b75e19..e37d5bd 100644 --- a/openwrt/package/linux-atm/Makefile +++ b/openwrt/package/linux-atm/Makefile @@ -17,18 +17,18 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install include $(TOPDIR)/package/rules.mk define Package/linux-atm - SECTION:=libs - CATEGORY:=Libraries - TITLE:=Linux ATM Library - DESCRIPTION:=Library for accessing the Linux ATM subsystem +SECTION:=libs +CATEGORY:=Libraries +TITLE:=Linux ATM Library +DESCRIPTION:=Library for accessing the Linux ATM subsystem endef define Package/br2684ctl - SECTION:=net - CATEGORY:=Network - TITLE:=RFC2684 bridging - DEPENDS:=+linux-atm - DESCRIPTION:=ATM RFC2684 bridging utility +SECTION:=net +CATEGORY:=Network +TITLE:=RFC2684 bridging +DEPENDS:=+linux-atm +DESCRIPTION:=ATM RFC2684 bridging utility endef define Build/Configure @@ -51,22 +51,23 @@ define Package/linux-atm/install endef define Package/br2684ctl/install + install -d -m0755 $(1)/etc/hotplug.d/net + install -m0644 ./files/br2684.hotplug $(1)/etc/hotplug.d/net/30-br2684 install -d -m0755 $(1)/usr/sbin $(CP) $(PKG_INSTALL_DIR)/usr/sbin/br2684ctl $(1)/usr/sbin/ - install -d -m0755 $(1)/etc/hotplug.d/net - install -m0644 ./files/br2684.init $(1)/etc/hotplug.d/net/30-br2684 endef define Build/InstallDev mkdir -p $(STAGING_DIR)/usr/include - $(CP) $(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h $(STAGING_DIR)/usr/include/ + $(CP) $(PKG_INSTALL_DIR)/usr/include/atm{,d,sap}.h \ + $(STAGING_DIR)/usr/include/ mkdir -p $(STAGING_DIR)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} $(STAGING_DIR)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libatm.{a,so*} \ + $(STAGING_DIR)/usr/lib/ endef define Build/UninstallDev - rm -rf \ - $(STAGING_DIR)/usr/include/atm{,d,sap}.h \ + rm -rf $(STAGING_DIR)/usr/include/atm{,d,sap}.h \ $(STAGING_DIR)/usr/lib/libatm.{a,so*} endef diff --git a/openwrt/package/linux-atm/files/br2684.init b/openwrt/package/linux-atm/files/br2684.hotplug index 242e7e5..242e7e5 100644 --- a/openwrt/package/linux-atm/files/br2684.init +++ b/openwrt/package/linux-atm/files/br2684.hotplug |