2005-01-16 11:43:02 +00:00
|
|
|
#
|
|
|
|
|
2006-01-10 23:53:36 +00:00
|
|
|
mainmenu "OpenWrt Configuration"
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-04-20 23:03:42 +00:00
|
|
|
config HAVE_DOT_CONFIG
|
2005-03-06 03:34:52 +00:00
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
2006-04-20 23:03:42 +00:00
|
|
|
source "target/Config.in"
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-05-19 22:46:24 +00:00
|
|
|
config ALL
|
|
|
|
bool "Select all packages by default"
|
|
|
|
default n
|
|
|
|
|
|
|
|
menuconfig DEVEL
|
2006-04-20 23:03:42 +00:00
|
|
|
bool "Advanced configuration options (for developers)"
|
|
|
|
default n
|
|
|
|
select BUILDOPTS
|
|
|
|
select TOOLCHAINOPTS
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-05-19 22:46:24 +00:00
|
|
|
menuconfig BUILDOPTS
|
|
|
|
bool "Build Options" if DEVEL
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-06-02 16:17:56 +00:00
|
|
|
config AUTOREBUILD
|
|
|
|
bool
|
|
|
|
prompt "Automatic rebuild of packages" if BUILDOPTS
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Automatically rebuild packages when their files change
|
2006-05-16 00:32:57 +00:00
|
|
|
|
2006-04-20 23:03:42 +00:00
|
|
|
config TAR_VERBOSITY
|
2005-04-05 18:21:58 +00:00
|
|
|
bool
|
2006-04-20 23:03:42 +00:00
|
|
|
prompt "Tar verbose" if BUILDOPTS
|
2005-01-16 11:43:02 +00:00
|
|
|
default n
|
|
|
|
|
2006-04-20 23:03:42 +00:00
|
|
|
config JLEVEL
|
2005-04-05 18:21:58 +00:00
|
|
|
int
|
2006-04-20 23:03:42 +00:00
|
|
|
prompt "Number of jobs to run simultaneously" if BUILDOPTS
|
2005-01-16 11:43:02 +00:00
|
|
|
default "1"
|
2006-04-20 23:03:42 +00:00
|
|
|
help
|
|
|
|
Number of jobs to run simultanesouly
|
2005-01-16 11:43:02 +00:00
|
|
|
|
|
|
|
source "toolchain/Config.in"
|
2006-06-21 13:02:37 +00:00
|
|
|
source "target/sdk/Config.in"
|
2006-06-21 03:17:13 +00:00
|
|
|
|
|
|
|
menu "Target Images"
|
|
|
|
config TARGET_ROOTFS_INITRAMFS
|
|
|
|
bool "ramdisk"
|
|
|
|
default n
|
|
|
|
depends LINUX_2_6
|
|
|
|
help
|
|
|
|
Embed the rootfs into the kernel (initramfs)
|
|
|
|
|
|
|
|
config TARGET_ROOTFS_JFFS2
|
|
|
|
bool "jffs2"
|
|
|
|
default y
|
|
|
|
depends !TARGET_ROOTFS_INITRAMFS
|
|
|
|
help
|
|
|
|
Build a jffs2 root filesystem
|
|
|
|
|
|
|
|
config TARGET_ROOTFS_SQUASHFS
|
|
|
|
bool "squashfs"
|
|
|
|
default y
|
|
|
|
depends !LINUX_2_6_ARUBA
|
|
|
|
depends !LINUX_2_6_XSCALE
|
|
|
|
depends !TARGET_ROOTFS_INITRAMFS
|
2006-07-02 15:10:04 +00:00
|
|
|
depends !LINUX_2_6_AU1000
|
2006-06-21 03:17:13 +00:00
|
|
|
help
|
|
|
|
Build a squashfs-lzma root filesystem
|
|
|
|
|
|
|
|
config TARGET_ROOTFS_TGZ
|
|
|
|
bool "tgz"
|
|
|
|
default y if !LINUX_2_4_BRCM && !LINUX_2_6_BRCM && !LINUX_2_6_ARUBA && !LINUX_2_4_AR531X
|
|
|
|
depends !TARGET_ROOTFS_INITRAMFS
|
|
|
|
help
|
|
|
|
Build a compressed tar archive of the the root filesystem
|
2006-07-20 21:06:47 +00:00
|
|
|
|
|
|
|
config TARGET_ROOTFS_EXT2FS
|
|
|
|
bool "ext2"
|
|
|
|
default n
|
|
|
|
depends !TARGET_ROOTFS_INITRAMFS
|
|
|
|
help
|
|
|
|
Ext2 file system with some free space for uml images
|
|
|
|
|
2006-06-21 03:17:13 +00:00
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
2006-05-12 19:08:03 +00:00
|
|
|
source "target/linux/Config.in"
|
2006-04-21 00:12:18 +00:00
|
|
|
source ".config.in"
|
2006-04-20 23:03:42 +00:00
|
|
|
|