aboutsummaryrefslogtreecommitdiffstats
path: root/package/wrt55agv2-spidevs
Commit message (Expand)AuthorAgeFilesLines
* Add initial kernel 2.6.28 support for atheros target. The include files moved...Hauke Mehrtens2009-02-201-1/+1
* Deprecate the old SPI-GPIO driver.Michael Büsch2009-02-102-2/+2
* use the spi-ks8995 driver on the WRT55AG v2 boardsGabor Juhos2008-04-174-0/+170
ass='lines'>
# 
# 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

PKG_NAME:=nvram
PKG_RELEASE:=1

include $(INCLUDE_DIR)/package.mk

define Package/nvram
  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
	mkdir -p $(PKG_BUILD_DIR)
	$(CP) ./src/* $(PKG_BUILD_DIR)
endef

define Build/InstallDev
	mkdir -p $(STAGING_DIR)/usr/lib
	$(CP) $(PKG_BUILD_DIR)/lib{nvram,shared}*.so $(STAGING_DIR)/usr/lib/
endef

define Build/UninstallDev
	rm -f $(STAGING_DIR)/usr/lib/lib{nvram,shared}*.so
endef

define Package/nvram/install
	$(INSTALL_DIR) $(1)/etc/init.d
	$(INSTALL_BIN) ./files/nvram.init $(1)/etc/init.d/nvram
	$(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))