Root/package/nvram/Makefile

1#
2# Copyright (C) 2009-2010 Jo-Philipp Wich <xm@subsignal.org>
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=nvram
11PKG_RELEASE:=9
12
13PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
14
15include $(INCLUDE_DIR)/package.mk
16
17define Package/nvram
18  SECTION:=utils
19  CATEGORY:=Base system
20  TITLE:=Userspace port of the Broadcom NVRAM manipulation tool
21  MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
22  DEPENDS:=@TARGET_brcm47xx||@TARGET_ar71xx
23endef
24
25define Package/nvram/description
26 This package contains an utility to manipulate NVRAM on Broadcom based devices.
27 It works on bcm47xx (Linux 2.6) without using the kernel api.
28endef
29
30define Build/Prepare
31    mkdir -p $(PKG_BUILD_DIR)
32    $(CP) ./src/* $(PKG_BUILD_DIR)/
33endef
34
35define Build/Configure
36endef
37
38define Build/Compile
39    $(MAKE) -C $(PKG_BUILD_DIR) \
40        CC="$(TARGET_CC)" \
41        CFLAGS="$(TARGET_CFLAGS) -Wall" \
42        LDFLAGS="$(TARGET_LDFLAGS)"
43endef
44
45define Build/InstallDev
46    $(INSTALL_DIR) $(1)/usr/lib
47    $(INSTALL_BIN) $(PKG_BUILD_DIR)/libnvram.so.0.1 $(1)/usr/lib/
48    ln -s libnvram.so.0.1 $(1)/usr/lib/libnvram.so
49endef
50
51define Package/nvram/install
52    $(INSTALL_DIR) $(1)/etc/init.d
53    $(INSTALL_BIN) ./files/nvram.init $(1)/etc/init.d/nvram
54    $(INSTALL_DIR) $(1)/usr/sbin
55    $(INSTALL_BIN) $(PKG_BUILD_DIR)/nvram $(1)/usr/sbin/
56    $(INSTALL_DIR) $(1)/usr/lib
57    $(INSTALL_BIN) $(PKG_BUILD_DIR)/libnvram.so.0.1 $(1)/usr/lib/
58endef
59
60$(eval $(call BuildPackage,nvram))
61

Archive Download this file



interactive