diff options
author | Travis Kemen <thepeople@openwrt.org> | 2010-03-05 20:27:58 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2010-03-05 20:27:58 +0000 |
commit | dca90efc232e989f7715326a3fc4b7bde575045a (patch) | |
tree | e0ccbd970c38101dffd1ce68f8b5f6b7be380bb6 /package/uboot-envtools/Makefile | |
parent | 137c26b7cb7a37012feb1c39ff11e09527d82ddd (diff) | |
download | upstream-dca90efc232e989f7715326a3fc4b7bde575045a.tar.gz upstream-dca90efc232e989f7715326a3fc4b7bde575045a.tar.bz2 upstream-dca90efc232e989f7715326a3fc4b7bde575045a.zip |
this patch fixes uboot-envtools so that it is no longer broken.
-Raphael
SVN-Revision: 19999
Diffstat (limited to 'package/uboot-envtools/Makefile')
-rw-r--r-- | package/uboot-envtools/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/uboot-envtools/Makefile b/package/uboot-envtools/Makefile index 1e77c43356..f602ffeb24 100644 --- a/package/uboot-envtools/Makefile +++ b/package/uboot-envtools/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2009 OpenWrt.org +# +# Copyright (C) 2006-2010 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=uboot-envtools PKG_VERSION:=20081215 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz PKG_SOURCE_URL:=http://ftp.de.debian.org/debian/pool/main/u/uboot-envtools/ @@ -19,8 +19,8 @@ include $(INCLUDE_DIR)/package.mk define Package/uboot-envtools SECTION:=utils CATEGORY:=Utilities - DEPENDS:=@BROKEN TITLE:=read/modify the environment for the bootloader U-Boot + DEPENDS:=+zlib endef define Package/uboot-envtools/description @@ -29,7 +29,7 @@ endef define Package/uboot-envtools/install $(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_BIN) $(PKG_BUILD_DIR)/fw_printenv $(1)/usr/sbin/ - ln -s fw_printenv $(1)/usr/sbin/fw_setenv + ln -sf fw_printenv $(1)/usr/sbin/fw_setenv endef $(eval $(call BuildPackage,uboot-envtools)) |