uboot-envtools: update kirkwood scripts
Also, scripts can be installed as data so let's change that here too. Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 38403
This commit is contained in:
		@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
 | 
				
			|||||||
PKG_NAME:=uboot-envtools
 | 
					PKG_NAME:=uboot-envtools
 | 
				
			||||||
PKG_DISTNAME:=u-boot
 | 
					PKG_DISTNAME:=u-boot
 | 
				
			||||||
PKG_VERSION:=2013.07
 | 
					PKG_VERSION:=2013.07
 | 
				
			||||||
PKG_RELEASE:=1
 | 
					PKG_RELEASE:=2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
PKG_SOURCE:=$(PKG_DISTNAME)-$(PKG_VERSION).tar.bz2
 | 
					PKG_SOURCE:=$(PKG_DISTNAME)-$(PKG_VERSION).tar.bz2
 | 
				
			||||||
PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot
 | 
					PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot
 | 
				
			||||||
@@ -55,27 +55,27 @@ define Package/uboot-envtools/install
 | 
				
			|||||||
	$(INSTALL_DATA) ./files/uboot-envtools.sh $(1)/lib
 | 
						$(INSTALL_DATA) ./files/uboot-envtools.sh $(1)/lib
 | 
				
			||||||
ifneq ($(CONFIG_TARGET_ar71xx),)
 | 
					ifneq ($(CONFIG_TARGET_ar71xx),)
 | 
				
			||||||
	$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
						$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
				
			||||||
	$(INSTALL_BIN) ./files/ar71xx $(1)/etc/uci-defaults/30_uboot-envtools
 | 
						$(INSTALL_DATA) ./files/ar71xx $(1)/etc/uci-defaults/30_uboot-envtools
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
ifneq ($(CONFIG_TARGET_cns3xxx),)
 | 
					ifneq ($(CONFIG_TARGET_cns3xxx),)
 | 
				
			||||||
	$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
						$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
				
			||||||
	$(INSTALL_BIN) ./files/cns3xxx $(1)/etc/uci-defaults/30_uboot-envtools
 | 
						$(INSTALL_DATA) ./files/cns3xxx $(1)/etc/uci-defaults/30_uboot-envtools
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
ifneq ($(CONFIG_TARGET_imx6),)
 | 
					ifneq ($(CONFIG_TARGET_imx6),)
 | 
				
			||||||
	$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
						$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
				
			||||||
	$(INSTALL_BIN) ./files/imx6 $(1)/etc/uci-defaults/30_uboot-envtools
 | 
						$(INSTALL_DATA) ./files/imx6 $(1)/etc/uci-defaults/30_uboot-envtools
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
ifneq ($(CONFIG_TARGET_kirkwood),)
 | 
					ifneq ($(CONFIG_TARGET_kirkwood),)
 | 
				
			||||||
	$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
						$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
				
			||||||
	$(INSTALL_BIN) ./files/kirkwood $(1)/etc/uci-defaults/30_uboot-envtools
 | 
						$(INSTALL_DATA) ./files/kirkwood $(1)/etc/uci-defaults/30_uboot-envtools
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
ifneq ($(CONFIG_TARGET_lantiq),)
 | 
					ifneq ($(CONFIG_TARGET_lantiq),)
 | 
				
			||||||
	$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
						$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
				
			||||||
	$(INSTALL_BIN) ./files/lantiq $(1)/etc/uci-defaults/30_uboot-envtools
 | 
						$(INSTALL_DATA) ./files/lantiq $(1)/etc/uci-defaults/30_uboot-envtools
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
ifneq ($(CONFIG_TARGET_ramips),)
 | 
					ifneq ($(CONFIG_TARGET_ramips),)
 | 
				
			||||||
	$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
						$(INSTALL_DIR) $(1)/etc/uci-defaults
 | 
				
			||||||
	$(INSTALL_BIN) ./files/ramips $(1)/etc/uci-defaults/30_uboot-envtools
 | 
						$(INSTALL_DATA) ./files/ramips $(1)/etc/uci-defaults/30_uboot-envtools
 | 
				
			||||||
endif
 | 
					endif
 | 
				
			||||||
endef
 | 
					endef
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,20 +1,17 @@
 | 
				
			|||||||
#!/bin/sh
 | 
					#!/bin/sh
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# Copyright (C) 2012 OpenWrt.org
 | 
					# Copyright (C) 2012-2013 OpenWrt.org
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[ -e /etc/config/ubootenv ] && exit 0
 | 
					[ -e /etc/config/ubootenv ] && exit 0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
touch /etc/config/ubootenv
 | 
					touch /etc/config/ubootenv
 | 
				
			||||||
 | 
					
 | 
				
			||||||
. /lib/kirkwood.sh
 | 
					 | 
				
			||||||
. /lib/uboot-envtools.sh
 | 
					. /lib/uboot-envtools.sh
 | 
				
			||||||
. /lib/functions.sh
 | 
					. /lib/functions.sh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
hardware=$(kirkwood_hardware_name)
 | 
					case "`cat /proc/device-tree/model`" in
 | 
				
			||||||
 | 
					"RaidSonic ICY BOX IB-NAS62x0 (Rev B)")
 | 
				
			||||||
case "$hardware" in
 | 
					 | 
				
			||||||
"RaidSonic ICY BOX IB-NAS6210")
 | 
					 | 
				
			||||||
	ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
 | 
						ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
 | 
				
			||||||
	;;
 | 
						;;
 | 
				
			||||||
esac
 | 
					esac
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user