--- /dev/null
+config 'interface' 'loopback'
+ option 'ifname' 'lo'
+ option 'proto' 'static'
+ option 'ipaddr' '127.0.0.1'
+ option 'netmask' '255.0.0.0'
+
+config 'interface' 'lan'
+ option 'ifname' 'eth0'
+ option 'proto' 'dhcp'
--- /dev/null
+# system file for Dockstar
+config system
+ option hostname OpenWrt
+ option timezone UTC
+
+config rdate
+ option interface eth0
+config led
+ option 'sysfs' 'dockstar:green:health'
+ option 'trigger' 'none'
+ option 'default' '1'
+config led
+ option 'sysfs' 'dockstar:orange:misc'
+ option 'trigger' 'netdev'
+ option 'mode' 'tx rx'
+ option 'dev' 'eth0'
define Image/Build
$(if $(Image/Build/$(1)), \
$(call Image/Build/$(1),$(1)), \
- $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).img \
+ $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(PROFILE)-$(1).img \
)
endef
define Image/Build/jffs2-128k
- dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).img \
+ dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(PROFILE)-$(1).img \
bs=2048 conv=sync
endef
( \
dd if=$(KDIR)/uImage bs=4096k conv=sync; \
dd if=$(KDIR)/root.$(1) bs=128k conv=sync; \
- ) > $(BIN_DIR)/$(IMG_PREFIX)-$(1).img
+ ) > $(BIN_DIR)/$(IMG_PREFIX)-$(PROFILE)-$(1).img
endef
$(eval $(call BuildImage))
--- /dev/null
+#
+# Copyright (C) 2010 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+define Profile/Sheevaplug
+ NAME:=Globalscale Sheevaplug
+ PACKAGES:=
+endef
+
+define Profile/Sheevaplug/Description
+ Globalscale Sheevaplug Profile
+endef
+
+$(eval $(call Profile,Sheevaplug))
--- /dev/null
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+define Profile/Dockstar
+ NAME:=Seagate Dockstar
+ PACKAGES:=
+endef
+
+define Profile/Dockstar/Description
+ Seagate Dockstar Profile
+endef
+
+$(eval $(call Profile,Dockstar))