summaryrefslogtreecommitdiffstats
path: root/openwrt/target/Config.in
diff options
context:
space:
mode:
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-03-06 03:34:52 +0000
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-03-06 03:34:52 +0000
commit9d30652149fd745711342cec7ee8574e973ec241 (patch)
treeaad933069e7dedf29eb70dbfd81e9ca95d9b578f /openwrt/target/Config.in
parent0167360282da38c534a2698b415a8e2bed241d0a (diff)
nbd's makefile/menuconfig rewrite
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@307 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target/Config.in')
-rw-r--r--openwrt/target/Config.in42
1 files changed, 37 insertions, 5 deletions
diff --git a/openwrt/target/Config.in b/openwrt/target/Config.in
index 1a997da2a..6453d54e7 100644
--- a/openwrt/target/Config.in
+++ b/openwrt/target/Config.in
@@ -1,6 +1,38 @@
-choice
- prompt "Target Root Filesystem"
- source "target/jffs2/Config.in"
- source "target/squashfs-lzma/Config.in"
-endchoice
+menu "Target Root Filesystem"
+ config BR2_TARGET_ROOTFS_JFFS2
+ bool "jffs2"
+ default y
+ help
+ Build a jffs2 root filesystem
+
+ config BR2_TARGET_ROOTFS_SQUASHFS_LZMA
+ bool "squashfs-lzma"
+ default y
+ help
+ Build a squashfs-lzma root filesystem
+
+endmenu
+
+menu "Device Support"
+
+ config BR2_TARGET_DEFAULT
+ default y
+ bool "Generic"
+
+ config BR2_TARGET_WRT54G
+ default y
+ select BR2_TARGET_DEFAULT
+ bool "Linksys WRT54G"
+
+ config BR2_TARGET_WRT54GS
+ default y
+ select BR2_TARGET_DEFAULT
+ bool "Linksys WRT54GS"
+
+ config BR2_TARGET_MOTOROLA
+ default n
+ select BR2_TARGET_DEFAULT
+ bool "Motorola"
+
+endmenu