This adds userspace support for the ALL6000.
I'm still working on firstboot in UBIFS, got rootfs_data/overlay/preinit and
sysupgrade working locally already. I'll post that once it's done.

Signed-off-by: Daniel Golle <dgo...@allnet.de>

diff --git a/package/uboot-envtools/Makefile b/package/uboot-envtools/Makefile
index 45f7430..8169840 100644
--- a/package/uboot-envtools/Makefile
+++ b/package/uboot-envtools/Makefile
@@ -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
diff --git a/package/uboot-envtools/files/kirkwood 
b/package/uboot-envtools/files/kirkwood
new file mode 100644
index 0000000..d42128e
--- /dev/null
+++ b/package/uboot-envtools/files/kirkwood
@@ -0,0 +1,26 @@
+#!/bin/sh
+#
+# Copyright (C) 2011-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
+"Allnet ALL6000")
+       ubootenv_add_uci_config /dev/mtd1 0x0 0x20000 0x20000
+       ;;
+
+esac
+
+config_load ubootenv
+config_foreach ubootenv_add_app_config ubootenv
+
+exit 0
diff --git a/target/linux/kirkwood/base-files/etc/uci-defaults/network 
b/target/linux/kirkwood/base-files/etc/uci-defaults/network
index 48c1232..70918ef 100644
--- a/target/linux/kirkwood/base-files/etc/uci-defaults/network
+++ b/target/linux/kirkwood/base-files/etc/uci-defaults/network
@@ -32,6 +32,10 @@ case "$hardware" in
        set_lan_dhcp "eth0"
        ;;
 
+"Allnet ALL6000")
+       ucidef_set_interface_lan "eth0 eth1"
+       ;;
+
 *)
        ucidef_set_interface_lan "eth0"
        ;;

Attachment: pgp3bgIspPyrD.pgp
Description: PGP signature

_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to