1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-28 18:08:55 +03:00

uboot-envtools: forgot to remove uboot-envtools.init file

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32052 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
luka 2012-06-04 22:03:00 +00:00
parent 090fe17a5f
commit f0547a9037

View File

@ -1,27 +0,0 @@
#!/bin/sh /etc/rc.common
# (C) 2011 OpenWrt.org
# Creates /etc/fw_env.conf for fw_printenv (and fw_setenv)
START=80
create_fwenv_config() {
local dev
local offset
local envsize
local secsize
local numsec
config_get dev "$1" dev
config_get offset "$1" offset "0x0000"
config_get envsize "$1" envsize
config_get secsize "$1" secsize
config_get numsec "$1" numsec
echo "$dev $offset $envsize $secsize $numsec" >>/etc/fw_env.config
}
start() {
[ ! -e /etc/fw_env.config ] && {
echo "# MTD device name Device offset Env. size Flash sector size Number of sectors" >/etc/fw_env.config
config_load ubootenv
config_foreach create_fwenv_config ubootenv
}
}