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
|
2006-08-10 19:25:26 +00:00
|
|
|
select TOOLCHAINOPTS if !NATIVE_TOOLCHAIN
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-07-25 18:49:43 +00:00
|
|
|
config BROKEN
|
|
|
|
bool "Show broken platforms / packages" if DEVEL
|
|
|
|
default n
|
|
|
|
|
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
|
|
|
|
2006-08-04 06:56:10 +00:00
|
|
|
config CCACHE
|
|
|
|
bool
|
|
|
|
prompt "Use ccache" if BUILDOPTS
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Compiler cache; see http://ccache.samba.org/
|
|
|
|
|
2007-01-05 15:33:14 +00:00
|
|
|
config SOURCE_FEEDS
|
|
|
|
string
|
|
|
|
prompt "Enter here external source feeds you want to include" if BUILDOPTS
|
|
|
|
default "https://svn.openwrt.org/openwrt/packages/"
|
|
|
|
help
|
|
|
|
Separate sources with spaces : " "
|
|
|
|
|
2005-01-16 11:43:02 +00:00
|
|
|
source "toolchain/Config.in"
|
2007-01-10 21:52:28 +00:00
|
|
|
source "target/imagebuilder/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"
|
2006-09-23 22:03:23 +00:00
|
|
|
default y if USES_JFFS2
|
2006-06-21 03:17:13 +00:00
|
|
|
depends !TARGET_ROOTFS_INITRAMFS
|
|
|
|
help
|
|
|
|
Build a jffs2 root filesystem
|
|
|
|
|
|
|
|
config TARGET_ROOTFS_SQUASHFS
|
|
|
|
bool "squashfs"
|
2006-09-23 22:03:23 +00:00
|
|
|
default y if USES_SQUASHFS
|
2006-06-21 03:17:13 +00:00
|
|
|
depends !TARGET_ROOTFS_INITRAMFS
|
|
|
|
help
|
|
|
|
Build a squashfs-lzma root filesystem
|
|
|
|
|
|
|
|
config TARGET_ROOTFS_TGZ
|
|
|
|
bool "tgz"
|
2006-09-23 22:03:23 +00:00
|
|
|
default y if !USES_SQUASHFS && !USES_JFFS2
|
2006-06-21 03:17:13 +00:00
|
|
|
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"
|
2006-09-23 22:03:23 +00:00
|
|
|
default y if !USES_SQUASHFS && !USES_JFFS2
|
2006-10-17 01:25:20 +00:00
|
|
|
default y if USES_EXT2
|
2006-07-20 21:06:47 +00:00
|
|
|
depends !TARGET_ROOTFS_INITRAMFS
|
|
|
|
help
|
|
|
|
Ext2 file system with some free space for uml images
|
|
|
|
|
2006-10-08 15:48:56 +00:00
|
|
|
comment "Image Options"
|
|
|
|
|
2006-11-28 20:14:41 +00:00
|
|
|
source "target/linux/*/image/Config.in"
|
2006-06-21 03:17:13 +00:00
|
|
|
|
2006-10-19 03:27:24 +00:00
|
|
|
config TARGET_ROOTFS_FSPART
|
|
|
|
int "Filesystem part size (in MB)"
|
|
|
|
depends X86_GRUB_IMAGES || TARGET_ROOTFS_EXT2FS
|
|
|
|
default 16
|
|
|
|
|
2006-06-21 03:17:13 +00:00
|
|
|
endmenu
|
|
|
|
|
2006-11-11 23:11:02 +00:00
|
|
|
source "tmp/.config.in"
|
2006-04-20 23:03:42 +00:00
|
|
|
|