2005-01-16 19:43:02 +08:00
|
|
|
#
|
|
|
|
|
2006-01-11 07:53:36 +08:00
|
|
|
mainmenu "OpenWrt Configuration"
|
2005-01-16 19:43:02 +08:00
|
|
|
|
2006-04-21 07:03:42 +08:00
|
|
|
config HAVE_DOT_CONFIG
|
2005-03-06 11:34:52 +08:00
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
2006-04-21 07:03:42 +08:00
|
|
|
source "target/Config.in"
|
2005-01-16 19:43:02 +08:00
|
|
|
|
2006-05-20 06:46:24 +08:00
|
|
|
config ALL
|
|
|
|
bool "Select all packages by default"
|
|
|
|
default n
|
|
|
|
|
|
|
|
menuconfig DEVEL
|
2006-04-21 07:03:42 +08:00
|
|
|
bool "Advanced configuration options (for developers)"
|
|
|
|
default n
|
|
|
|
select BUILDOPTS
|
2006-08-11 03:25:26 +08:00
|
|
|
select TOOLCHAINOPTS if !NATIVE_TOOLCHAIN
|
2005-01-16 19:43:02 +08:00
|
|
|
|
2006-07-26 02:49:43 +08:00
|
|
|
config BROKEN
|
|
|
|
bool "Show broken platforms / packages" if DEVEL
|
|
|
|
default n
|
|
|
|
|
2006-05-20 06:46:24 +08:00
|
|
|
menuconfig BUILDOPTS
|
|
|
|
bool "Build Options" if DEVEL
|
2005-01-16 19:43:02 +08:00
|
|
|
|
2006-06-03 00:17:56 +08:00
|
|
|
config AUTOREBUILD
|
|
|
|
bool
|
|
|
|
prompt "Automatic rebuild of packages" if BUILDOPTS
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Automatically rebuild packages when their files change
|
2006-05-16 08:32:57 +08:00
|
|
|
|
2006-04-21 07:03:42 +08:00
|
|
|
config TAR_VERBOSITY
|
2005-04-06 02:21:58 +08:00
|
|
|
bool
|
2006-04-21 07:03:42 +08:00
|
|
|
prompt "Tar verbose" if BUILDOPTS
|
2005-01-16 19:43:02 +08:00
|
|
|
default n
|
|
|
|
|
2006-04-21 07:03:42 +08:00
|
|
|
config JLEVEL
|
2005-04-06 02:21:58 +08:00
|
|
|
int
|
2006-04-21 07:03:42 +08:00
|
|
|
prompt "Number of jobs to run simultaneously" if BUILDOPTS
|
2005-01-16 19:43:02 +08:00
|
|
|
default "1"
|
2006-04-21 07:03:42 +08:00
|
|
|
help
|
|
|
|
Number of jobs to run simultanesouly
|
2005-01-16 19:43:02 +08:00
|
|
|
|
2006-08-04 14:56:10 +08:00
|
|
|
config CCACHE
|
|
|
|
bool
|
|
|
|
prompt "Use ccache" if BUILDOPTS
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Compiler cache; see http://ccache.samba.org/
|
|
|
|
|
2005-01-16 19:43:02 +08:00
|
|
|
source "toolchain/Config.in"
|
2006-06-21 21:02:37 +08:00
|
|
|
source "target/sdk/Config.in"
|
2006-06-21 11:17:13 +08: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"
|
2006-09-24 06:03:23 +08:00
|
|
|
default y if USES_JFFS2
|
2006-06-21 11:17:13 +08:00
|
|
|
depends !TARGET_ROOTFS_INITRAMFS
|
|
|
|
help
|
|
|
|
Build a jffs2 root filesystem
|
|
|
|
|
|
|
|
config TARGET_ROOTFS_SQUASHFS
|
|
|
|
bool "squashfs"
|
2006-09-24 06:03:23 +08:00
|
|
|
default y if USES_SQUASHFS
|
2006-06-21 11:17:13 +08:00
|
|
|
depends !TARGET_ROOTFS_INITRAMFS
|
|
|
|
help
|
|
|
|
Build a squashfs-lzma root filesystem
|
|
|
|
|
|
|
|
config TARGET_ROOTFS_TGZ
|
|
|
|
bool "tgz"
|
2006-09-24 06:03:23 +08:00
|
|
|
default y if !USES_SQUASHFS && !USES_JFFS2
|
2006-06-21 11:17:13 +08:00
|
|
|
depends !TARGET_ROOTFS_INITRAMFS
|
|
|
|
help
|
|
|
|
Build a compressed tar archive of the the root filesystem
|
2006-07-21 05:06:47 +08:00
|
|
|
|
|
|
|
config TARGET_ROOTFS_EXT2FS
|
|
|
|
bool "ext2"
|
2006-09-24 06:03:23 +08:00
|
|
|
default y if !USES_SQUASHFS && !USES_JFFS2
|
2006-10-17 09:25:20 +08:00
|
|
|
default y if USES_EXT2
|
2006-07-21 05:06:47 +08:00
|
|
|
depends !TARGET_ROOTFS_INITRAMFS
|
|
|
|
help
|
|
|
|
Ext2 file system with some free space for uml images
|
|
|
|
|
2006-10-08 23:48:56 +08:00
|
|
|
comment "Image Options"
|
|
|
|
|
|
|
|
source "target/image/*/Config.in"
|
2006-06-21 11:17:13 +08:00
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
2006-05-13 03:08:03 +08:00
|
|
|
source "target/linux/Config.in"
|
2006-04-21 08:12:18 +08:00
|
|
|
source ".config.in"
|
2006-04-21 07:03:42 +08:00
|
|
|
|