projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix a problem with the firewall script (multicast traffic could produce packet loss)
[openwrt.git]
/
package
/
nvram
/
Makefile
diff --git
a/package/nvram/Makefile
b/package/nvram/Makefile
index
cf76c7c
..
87e8b06
100644
(file)
--- a/
package/nvram/Makefile
+++ b/
package/nvram/Makefile
@@
-1,3
+1,9
@@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
# $Id$
include $(TOPDIR)/rules.mk
# $Id$
include $(TOPDIR)/rules.mk
@@
-7,13
+13,16
@@
PKG_RELEASE:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
-include $(
TOPDIR)/include
/package.mk
+include $(
INCLUDE_DIR)
/package.mk
define Package/nvram
define Package/nvram
-SECTION:=base
-DEPENDS:=@LINUX_2_4_BRCM
-TITLE:=Broadcom config utility
-DESCRIPTION:=control utility for broadcom's 'nvram' config area
+ SECTION:=utils
+ CATEGORY:=Utilities
+ DEPENDS:=@LINUX_2_4_BRCM
+ TITLE:=Broadcom config utility
+ DESCRIPTION:=\
+ This package contains an utility to control broadcom's 'nvram' config \\\
+ area.
endef
define Build/Prepare
endef
define Build/Prepare
@@
-21,13
+30,6
@@
define Build/Prepare
$(CP) ./src/* $(PKG_BUILD_DIR)
endef
$(CP) ./src/* $(PKG_BUILD_DIR)
endef
-define Package/nvram/install
- install -d -m0755 $(1)/usr/lib
- $(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(1)/usr/lib/
- install -d -m0755 $(1)/usr/sbin
- install -m0755 $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin/
-endef
-
define Build/InstallDev
mkdir -p $(STAGING_DIR)/usr/lib
$(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(STAGING_DIR)/usr/lib/
define Build/InstallDev
mkdir -p $(STAGING_DIR)/usr/lib
$(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(STAGING_DIR)/usr/lib/
@@
-37,4
+39,11
@@
define Build/UninstallDev
rm -f $(STAGING_DIR)/usr/lib/lib{nvram,shared}*.so
endef
rm -f $(STAGING_DIR)/usr/lib/lib{nvram,shared}*.so
endef
+define Package/nvram/install
+ $(INSTALL_DIR) $(1)/usr/lib
+ $(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(1)/usr/lib/
+ $(INSTALL_DIR) $(1)/usr/sbin
+ $(INSTALL_BIN) $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin/
+endef
+
$(eval $(call BuildPackage,nvram))
$(eval $(call BuildPackage,nvram))
This page took
0.025094 seconds
and
4
git commands to generate.