diff options
author | Mike Baker <mbm@openwrt.org> | 2005-03-06 03:34:52 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2005-03-06 03:34:52 +0000 |
commit | 3d904bb14a330fb72f60d4b78a40435389398655 (patch) | |
tree | 4c6922d42353c39b46dcd7cd09982fbe9c1f9765 /target/Config.in | |
parent | b92a98900c8308542da9f758cd656880081f1196 (diff) | |
download | master-187ad058-3d904bb14a330fb72f60d4b78a40435389398655.tar.gz master-187ad058-3d904bb14a330fb72f60d4b78a40435389398655.tar.bz2 master-187ad058-3d904bb14a330fb72f60d4b78a40435389398655.zip |
nbd's makefile/menuconfig rewrite
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@307 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/Config.in')
-rw-r--r-- | target/Config.in | 42 |
1 files changed, 37 insertions, 5 deletions
diff --git a/target/Config.in b/target/Config.in index 1a997da2a6..6453d54e72 100644 --- a/target/Config.in +++ b/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 |