mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 18:23:09 +02:00
[package] uboot-envtools: add kirkwood board support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32756 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
c1d79f64ee
commit
8d698ff98a
@ -69,6 +69,10 @@ ifneq ($(CONFIG_TARGET_ar71xx),)
|
||||
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||
$(INSTALL_BIN) ./files/ar71xx $(1)/etc/uci-defaults/uboot-envtools
|
||||
endif
|
||||
ifneq ($(CONFIG_TARGET_kirkwood),)
|
||||
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||
$(INSTALL_BIN) ./files/kirkwood $(1)/etc/uci-defaults/uboot-envtools
|
||||
endif
|
||||
ifneq ($(CONFIG_TARGET_lantiq),)
|
||||
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
||||
$(INSTALL_BIN) ./files/lantiq $(1)/etc/uci-defaults/uboot-envtools
|
||||
|
25
package/uboot-envtools/files/kirkwood
Normal file
25
package/uboot-envtools/files/kirkwood
Normal file
@ -0,0 +1,25 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2012 OpenWrt.org
|
||||
#
|
||||
|
||||
[ -e /etc/config/ubootenv ] && exit 0
|
||||
|
||||
touch /etc/config/ubootenv
|
||||
|
||||
. /lib/kirkwood.sh
|
||||
. /lib/uboot-envtools.sh
|
||||
. /lib/functions.sh
|
||||
|
||||
hardware=$(kirkwood_hardware_name)
|
||||
|
||||
case "$hardware" in
|
||||
"RaidSonic ICY BOX IB-NAS6210")
|
||||
ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x20000" "0x20000"
|
||||
;;
|
||||
esac
|
||||
|
||||
config_load ubootenv
|
||||
config_foreach ubootenv_add_app_config ubootenv
|
||||
|
||||
exit 0
|
Loading…
Reference in New Issue
Block a user