2010-03-05 22:27:58 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2009-10-07 18:14:28 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=uboot-envtools
|
|
|
|
PKG_VERSION:=20081215
|
2010-03-05 22:27:58 +02:00
|
|
|
PKG_RELEASE:=2
|
2009-10-07 18:14:28 +03:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://ftp.de.debian.org/debian/pool/main/u/uboot-envtools/
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/uboot-envtools
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE:=read/modify the environment for the bootloader U-Boot
|
2010-03-05 22:27:58 +02:00
|
|
|
DEPENDS:=+zlib
|
2009-10-07 18:14:28 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uboot-envtools/description
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uboot-envtools/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/fw_printenv $(1)/usr/sbin/
|
2010-03-05 22:27:58 +02:00
|
|
|
ln -sf fw_printenv $(1)/usr/sbin/fw_setenv
|
2009-10-07 18:14:28 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,uboot-envtools))
|