2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-07-21 19:45:36 +08:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=nvram
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2006-06-21 10:32:39 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-07-21 19:45:36 +08:00
|
|
|
|
2006-05-11 03:06:22 +08:00
|
|
|
define Package/nvram
|
2006-09-24 03:28:18 +08:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2007-09-09 03:55:42 +08:00
|
|
|
DEPENDS:=@TARGET_brcm_2_4
|
2006-09-24 03:28:18 +08:00
|
|
|
TITLE:=Broadcom config utility
|
2007-09-07 16:34:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/nvram/description
|
|
|
|
This package contains an utility to control broadcom's 'nvram' config area.
|
2006-05-11 03:06:22 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
2005-07-21 19:45:36 +08:00
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
2006-02-02 07:53:19 +08:00
|
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)
|
2006-05-11 03:06:22 +08:00
|
|
|
endef
|
2005-07-21 19:45:36 +08:00
|
|
|
|
2006-05-31 21:00:11 +08:00
|
|
|
define Build/InstallDev
|
2005-07-22 19:01:30 +08:00
|
|
|
mkdir -p $(STAGING_DIR)/usr/lib
|
2006-06-19 02:30:40 +08:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(STAGING_DIR)/usr/lib/
|
2006-05-31 21:00:11 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/UninstallDev
|
2006-06-19 02:30:40 +08:00
|
|
|
rm -f $(STAGING_DIR)/usr/lib/lib{nvram,shared}*.so
|
2006-05-31 21:00:11 +08:00
|
|
|
endef
|
2005-07-22 01:41:49 +08:00
|
|
|
|
2006-09-24 03:28:18 +08:00
|
|
|
define Package/nvram/install
|
2007-06-27 13:26:20 +08:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/nvram.init $(1)/etc/init.d/nvram
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2006-09-24 03:28:18 +08:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(1)/usr/lib/
|
2006-11-23 08:29:07 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin/
|
2006-09-24 03:28:18 +08:00
|
|
|
endef
|
|
|
|
|
2006-05-31 21:00:11 +08:00
|
|
|
$(eval $(call BuildPackage,nvram))
|