From 2f006aa5e8a74e2dd224f5e9b90d36c79651fd66 Mon Sep 17 00:00:00 2001 From: mbm Date: Sun, 16 Jan 2005 11:43:02 +0000 Subject: Initial revision git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@197 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 109 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 Config.in (limited to 'Config.in') diff --git a/Config.in b/Config.in new file mode 100644 index 000000000..2b335e68b --- /dev/null +++ b/Config.in @@ -0,0 +1,109 @@ +# + +mainmenu "Buildroot2 Configuration" + +config BR2_HAVE_DOT_CONFIG + bool + default y + +choice + prompt "Target Architecture" + default BR2_i386 + help + Stuff + +config BR2_arm + bool "arm" + +config BR2_armeb + bool "armeb" + +config BR2_cris + bool "cris" + +config BR2_i386 + bool "i386" + +config BR2_m68k + bool "m68k" + +config BR2_mips + bool "mips" + +config BR2_mipsel + bool "mipsel" + +config BR2_powerpc + bool "powerpc" + +config BR2_sh3 + bool "sh3" + +config BR2_sh3eb + bool "sh3eb" + +config BR2_sh4 + bool "sh4" + +config BR2_sh4eb + bool "sh4eb" + +config BR2_sparc + bool "sparc" + +endchoice + +config BR2_ARCH + string + default "arm" if BR2_arm + default "armeb" if BR2_armeb + default "cris" if BR2_cris + default "i386" if BR2_i386 + default "m68k" if BR2_m68k + default "mips" if BR2_mips + default "mipsel" if BR2_mipsel + default "powerpc" if BR2_powerpc + default "sh3" if BR2_sh3 + default "sh3eb" if BR2_sh3eb + default "sh4" if BR2_sh4 + default "sh4eb" if BR2_sh4eb + default "sparc" if BR2_sparc + + +menu "Build options" + +config BR2_WGET + string "Wget command" + default "wget --passive-ftp -nd" + +config BR2_TAR_VERBOSITY + bool "Tar verbose" + default n + +config BR2_STAGING_DIR + string "Toolchain and header file location?" + default "$(BUILD_DIR)/staging_dir" + help + This is the location where the toolchain will be installed. + Since the toolchain will not work if it is moved from this + location, it is important for people wishing to package up + a uClibc toolchain that this be set to the location in which + the toolchain will be used. + + Most people will leave this set to the default value of + "$(BUILD_DIR)/staging_dir". + +config BR2_JLEVEL + int "Number of jobs to run simultaneously" + default "1" + help + Number of jobs to run simultanesouly + +endmenu + +source "toolchain/Config.in" + +source "package/Config.in" + +source "target/Config.in" + -- cgit v1.2.3 From 2ccd728cc3ac3fc23d8d26de2c177ce5453242ff Mon Sep 17 00:00:00 2001 From: mbm Date: Mon, 17 Jan 2005 00:19:20 +0000 Subject: Update defaults git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@202 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 2b335e68b..7d0631363 100644 --- a/Config.in +++ b/Config.in @@ -8,7 +8,7 @@ config BR2_HAVE_DOT_CONFIG choice prompt "Target Architecture" - default BR2_i386 + default BR2_mips help Stuff -- cgit v1.2.3 From 5e63521082478d8d37770570185788b3b7573ffa Mon Sep 17 00:00:00 2001 From: mbm Date: Mon, 17 Jan 2005 06:18:44 +0000 Subject: Opps - mipsel instead of mips git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@205 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 7d0631363..aa14eda56 100644 --- a/Config.in +++ b/Config.in @@ -8,7 +8,7 @@ config BR2_HAVE_DOT_CONFIG choice prompt "Target Architecture" - default BR2_mips + default BR2_mipsel help Stuff -- cgit v1.2.3 From b1fea1a5d2a0e49411bf9894191b6db5d4c745bf Mon Sep 17 00:00:00 2001 From: wbx Date: Sat, 19 Feb 2005 07:46:44 +0000 Subject: sync with buildroot2 from uclibc git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@268 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index aa14eda56..7fd499b2e 100644 --- a/Config.in +++ b/Config.in @@ -1,6 +1,6 @@ # -mainmenu "Buildroot2 Configuration" +mainmenu "OpenWRT Configuration" config BR2_HAVE_DOT_CONFIG bool -- cgit v1.2.3 From f77b88d124ea1c900f9cf5e04046939aad48bbe1 Mon Sep 17 00:00:00 2001 From: mbm Date: Sun, 6 Mar 2005 03:34:52 +0000 Subject: nbd's makefile/menuconfig rewrite git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@307 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 7fd499b2e..5867be0e6 100644 --- a/Config.in +++ b/Config.in @@ -2,6 +2,10 @@ mainmenu "OpenWRT Configuration" +config MODULES + bool + default y + config BR2_HAVE_DOT_CONFIG bool default y @@ -102,8 +106,5 @@ config BR2_JLEVEL endmenu source "toolchain/Config.in" - source "package/Config.in" - source "target/Config.in" - -- cgit v1.2.3 From 0cd280b811d0f6c646b65613e0e6c72020a717d0 Mon Sep 17 00:00:00 2001 From: wbx Date: Wed, 23 Mar 2005 09:39:15 +0000 Subject: change default path for staging_dir. http://www.openwrt.org/forum/viewtopic.php?p=5528#5528 git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@421 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 5867be0e6..31ddbac6d 100644 --- a/Config.in +++ b/Config.in @@ -86,7 +86,7 @@ config BR2_TAR_VERBOSITY config BR2_STAGING_DIR string "Toolchain and header file location?" - default "$(BUILD_DIR)/staging_dir" + default "$(BASE_DIR)/staging_dir_$(ARCH)$(ARCH_FPU_SUFFIX)" help This is the location where the toolchain will be installed. Since the toolchain will not work if it is moved from this @@ -95,7 +95,7 @@ config BR2_STAGING_DIR the toolchain will be used. Most people will leave this set to the default value of - "$(BUILD_DIR)/staging_dir". + "$(BASE_DIR)/staging_dir_$(ARCH)$(ARCH_FPU_SUFFIX)". config BR2_JLEVEL int "Number of jobs to run simultaneously" -- cgit v1.2.3 From 362585143d362b5ffe9a140abd210cdea62d012c Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 5 Apr 2005 18:21:58 +0000 Subject: hide experimental/developer options from the user. can be reenabled by using make menuconfig DEVELOPER=1 git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@567 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 26 +++++--------------------- 1 file changed, 5 insertions(+), 21 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 31ddbac6d..576e4826d 100644 --- a/Config.in +++ b/Config.in @@ -11,7 +11,6 @@ config BR2_HAVE_DOT_CONFIG default y choice - prompt "Target Architecture" default BR2_mipsel help Stuff @@ -65,7 +64,7 @@ config BR2_ARCH default "i386" if BR2_i386 default "m68k" if BR2_m68k default "mips" if BR2_mips - default "mipsel" if BR2_mipsel + default "mipsel" if BR2_mipsel || !CONFIG_DEVEL default "powerpc" if BR2_powerpc default "sh3" if BR2_sh3 default "sh3eb" if BR2_sh3eb @@ -74,36 +73,21 @@ config BR2_ARCH default "sparc" if BR2_sparc -menu "Build options" - config BR2_WGET - string "Wget command" + string default "wget --passive-ftp -nd" config BR2_TAR_VERBOSITY - bool "Tar verbose" + bool default n config BR2_STAGING_DIR - string "Toolchain and header file location?" + string default "$(BASE_DIR)/staging_dir_$(ARCH)$(ARCH_FPU_SUFFIX)" - help - This is the location where the toolchain will be installed. - Since the toolchain will not work if it is moved from this - location, it is important for people wishing to package up - a uClibc toolchain that this be set to the location in which - the toolchain will be used. - - Most people will leave this set to the default value of - "$(BASE_DIR)/staging_dir_$(ARCH)$(ARCH_FPU_SUFFIX)". config BR2_JLEVEL - int "Number of jobs to run simultaneously" + int default "1" - help - Number of jobs to run simultanesouly - -endmenu source "toolchain/Config.in" source "package/Config.in" -- cgit v1.2.3 From 144e109f1270bf1ac89c8339cd37fc2d5b41ccd7 Mon Sep 17 00:00:00 2001 From: nbd Date: Mon, 25 Jul 2005 18:12:20 +0000 Subject: work around bug in menuconfig without DEVELOPER=1 (target arch) git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1566 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 576e4826d..6d636d1a7 100644 --- a/Config.in +++ b/Config.in @@ -10,6 +10,9 @@ config BR2_HAVE_DOT_CONFIG bool default y +config BR2_mipsel + default y + choice default BR2_mipsel help -- cgit v1.2.3 From d0f611787c94090697587c02e1b5c2f3d45b0b0a Mon Sep 17 00:00:00 2001 From: nbd Date: Sat, 22 Oct 2005 00:06:20 +0000 Subject: large build system cleanup. added some stuff to control the verbosity level, but not complete, yet. git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2221 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 6d636d1a7..3f5cb29c5 100644 --- a/Config.in +++ b/Config.in @@ -84,10 +84,6 @@ config BR2_TAR_VERBOSITY bool default n -config BR2_STAGING_DIR - string - default "$(BASE_DIR)/staging_dir_$(ARCH)$(ARCH_FPU_SUFFIX)" - config BR2_JLEVEL int default "1" -- cgit v1.2.3 From 1a73c7e2c98f05b830dd6634b044ea42fd81cdf5 Mon Sep 17 00:00:00 2001 From: wbx Date: Sun, 25 Dec 2005 20:04:16 +0000 Subject: first ar531x support for 2.4, thx Mile Albon, some addons from me for mips big endian toolchain git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2781 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 3f5cb29c5..c93b1f17c 100644 --- a/Config.in +++ b/Config.in @@ -11,12 +11,11 @@ config BR2_HAVE_DOT_CONFIG default y config BR2_mipsel + bool default y choice - default BR2_mipsel - help - Stuff + prompt "Target Architecture" if CONFIG_DEVEL config BR2_arm bool "arm" @@ -33,8 +32,8 @@ config BR2_i386 config BR2_m68k bool "m68k" -config BR2_mips - bool "mips" +config BR2_mipseb + bool "mipseb" config BR2_mipsel bool "mipsel" @@ -66,7 +65,7 @@ config BR2_ARCH default "cris" if BR2_cris default "i386" if BR2_i386 default "m68k" if BR2_m68k - default "mips" if BR2_mips + default "mipseb" if BR2_mipseb default "mipsel" if BR2_mipsel || !CONFIG_DEVEL default "powerpc" if BR2_powerpc default "sh3" if BR2_sh3 -- cgit v1.2.3 From 74753f7ac30554a19e14cfa59660779c60f55c81 Mon Sep 17 00:00:00 2001 From: wbx Date: Mon, 26 Dec 2005 12:02:43 +0000 Subject: mipseb -> mips, thx kaloz for clearification git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2785 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index c93b1f17c..308df372c 100644 --- a/Config.in +++ b/Config.in @@ -32,8 +32,8 @@ config BR2_i386 config BR2_m68k bool "m68k" -config BR2_mipseb - bool "mipseb" +config BR2_mips + bool "mips" config BR2_mipsel bool "mipsel" @@ -65,7 +65,7 @@ config BR2_ARCH default "cris" if BR2_cris default "i386" if BR2_i386 default "m68k" if BR2_m68k - default "mipseb" if BR2_mipseb + default "mips" if BR2_mips default "mipsel" if BR2_mipsel || !CONFIG_DEVEL default "powerpc" if BR2_powerpc default "sh3" if BR2_sh3 -- cgit v1.2.3 From 3e0642a9ec4c98d9fa836261ed29a4b8b70126e5 Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 10 Jan 2006 20:27:11 +0000 Subject: display limited architecture selection in menuconfig without CONFIG_DEVEL git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2879 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 308df372c..5a1768b8d 100644 --- a/Config.in +++ b/Config.in @@ -15,7 +15,23 @@ config BR2_mipsel default y choice - prompt "Target Architecture" if CONFIG_DEVEL + prompt "Target Architecture" + +# Supported architectures + +config BR2_i386 + bool "i386" + +config BR2_mips + bool "mips" + +config BR2_mipsel + bool "mipsel" + + +if CONFIG_DEVEL + +# Unsupported architectures config BR2_arm bool "arm" @@ -26,18 +42,9 @@ config BR2_armeb config BR2_cris bool "cris" -config BR2_i386 - bool "i386" - config BR2_m68k bool "m68k" -config BR2_mips - bool "mips" - -config BR2_mipsel - bool "mipsel" - config BR2_powerpc bool "powerpc" @@ -56,6 +63,7 @@ config BR2_sh4eb config BR2_sparc bool "sparc" +endif endchoice config BR2_ARCH -- cgit v1.2.3 From 0f558f56a24fecad263addddd57ff7a405628506 Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 10 Jan 2006 20:45:12 +0000 Subject: Move device selection first in menuconfig (#18) git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2880 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 5a1768b8d..94b74581b 100644 --- a/Config.in +++ b/Config.in @@ -95,6 +95,7 @@ config BR2_JLEVEL int default "1" +source "target/Config.in" source "toolchain/Config.in" source "package/Config.in" -source "target/Config.in" +source "target/linux/Config.in" -- cgit v1.2.3 From 98cdae041b0f42f59c070d941c2ee609054f2424 Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 10 Jan 2006 23:53:36 +0000 Subject: fix menuconfig with DEVELOPER=1 git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2890 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 94b74581b..ef4ce7b7f 100644 --- a/Config.in +++ b/Config.in @@ -1,6 +1,6 @@ # -mainmenu "OpenWRT Configuration" +mainmenu "OpenWrt Configuration" config MODULES bool -- cgit v1.2.3 From ce399c5f844d8c117a2b4f9f68184602597bdc6f Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 11 Jan 2006 02:29:20 +0000 Subject: fix arch default git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2899 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index ef4ce7b7f..15130b127 100644 --- a/Config.in +++ b/Config.in @@ -10,12 +10,9 @@ config BR2_HAVE_DOT_CONFIG bool default y -config BR2_mipsel - bool - default y - choice prompt "Target Architecture" + default BR2_mipsel # Supported architectures -- cgit v1.2.3 From f34b066e92072bf03002792621f686d89935cc0a Mon Sep 17 00:00:00 2001 From: kaloz Date: Fri, 13 Jan 2006 11:34:49 +0000 Subject: make target selection nicer, choose arch automatically git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2947 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 34 ++++++++++++++-------------------- 1 file changed, 14 insertions(+), 20 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 15130b127..99f9c9c34 100644 --- a/Config.in +++ b/Config.in @@ -10,58 +10,52 @@ config BR2_HAVE_DOT_CONFIG bool default y -choice - prompt "Target Architecture" - default BR2_mipsel - # Supported architectures config BR2_i386 - bool "i386" + tristate config BR2_mips - bool "mips" + tristate config BR2_mipsel - bool "mipsel" + tristate +# Unsupported architectures if CONFIG_DEVEL -# Unsupported architectures - config BR2_arm - bool "arm" + tristate config BR2_armeb - bool "armeb" + tristate config BR2_cris - bool "cris" + tristate config BR2_m68k - bool "m68k" + tristate config BR2_powerpc - bool "powerpc" + tristate config BR2_sh3 - bool "sh3" + tristate config BR2_sh3eb - bool "sh3eb" + tristate config BR2_sh4 - bool "sh4" + tristate config BR2_sh4eb - bool "sh4eb" + tristate config BR2_sparc - bool "sparc" + tristate endif -endchoice config BR2_ARCH string -- cgit v1.2.3 From 021e6aa5f3691fe6fdf04a406a642575f46f284a Mon Sep 17 00:00:00 2001 From: nbd Date: Thu, 20 Apr 2006 23:03:42 +0000 Subject: menuconfig cleanup git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3684 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 92 +++++++++++++-------------------------------------------------- 1 file changed, 19 insertions(+), 73 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 99f9c9c34..7e4d29e7d 100644 --- a/Config.in +++ b/Config.in @@ -2,91 +2,37 @@ mainmenu "OpenWrt Configuration" -config MODULES +config HAVE_DOT_CONFIG bool default y -config BR2_HAVE_DOT_CONFIG - bool - default y - -# Supported architectures - -config BR2_i386 - tristate - -config BR2_mips - tristate - -config BR2_mipsel - tristate - -# Unsupported architectures - -if CONFIG_DEVEL - -config BR2_arm - tristate - -config BR2_armeb - tristate - -config BR2_cris - tristate - -config BR2_m68k - tristate - -config BR2_powerpc - tristate - -config BR2_sh3 - tristate - -config BR2_sh3eb - tristate - -config BR2_sh4 - tristate - -config BR2_sh4eb - tristate - -config BR2_sparc - tristate - -endif +source "target/Config.in" -config BR2_ARCH - string - default "arm" if BR2_arm - default "armeb" if BR2_armeb - default "cris" if BR2_cris - default "i386" if BR2_i386 - default "m68k" if BR2_m68k - default "mips" if BR2_mips - default "mipsel" if BR2_mipsel || !CONFIG_DEVEL - default "powerpc" if BR2_powerpc - default "sh3" if BR2_sh3 - default "sh3eb" if BR2_sh3eb - default "sh4" if BR2_sh4 - default "sh4eb" if BR2_sh4eb - default "sparc" if BR2_sparc +config DEVEL + bool "Advanced configuration options (for developers)" + default n + select BUILDOPTS + select TOOLCHAINOPTS +config ALL + bool "Select all packages by default" + default n -config BR2_WGET - string - default "wget --passive-ftp -nd" +menuconfig BUILDOPTS + bool "Build Options" if DEVEL -config BR2_TAR_VERBOSITY +config TAR_VERBOSITY bool + prompt "Tar verbose" if BUILDOPTS default n -config BR2_JLEVEL +config JLEVEL int + prompt "Number of jobs to run simultaneously" if BUILDOPTS default "1" + help + Number of jobs to run simultanesouly -source "target/Config.in" source "toolchain/Config.in" source "package/Config.in" -source "target/linux/Config.in" + -- cgit v1.2.3 From 096afa4e695916a8068c82af6807f9b6de587c38 Mon Sep 17 00:00:00 2001 From: nbd Date: Fri, 21 Apr 2006 00:12:18 +0000 Subject: more cleanups and a new menuconfig generator git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3685 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 7e4d29e7d..71f056897 100644 --- a/Config.in +++ b/Config.in @@ -34,5 +34,5 @@ config JLEVEL Number of jobs to run simultanesouly source "toolchain/Config.in" -source "package/Config.in" +source ".config.in" -- cgit v1.2.3 From 02eae88c3599c13df02546694887b629e8892fd0 Mon Sep 17 00:00:00 2001 From: mbm Date: Fri, 12 May 2006 19:08:03 +0000 Subject: fix BR2_ and CONFIG_ issues git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3769 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 1 + 1 file changed, 1 insertion(+) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 71f056897..71db916c6 100644 --- a/Config.in +++ b/Config.in @@ -34,5 +34,6 @@ config JLEVEL Number of jobs to run simultanesouly source "toolchain/Config.in" +source "target/linux/Config.in" source ".config.in" -- cgit v1.2.3 From 95bdcf394e439d688a5290a26a15e0bc31144f91 Mon Sep 17 00:00:00 2001 From: mbm Date: Tue, 16 May 2006 00:32:57 +0000 Subject: finish up package makefile git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3786 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 71db916c6..ae959f683 100644 --- a/Config.in +++ b/Config.in @@ -18,6 +18,10 @@ config ALL bool "Select all packages by default" default n +config WGET + string + default "wget --passive-ftp -nd" + menuconfig BUILDOPTS bool "Build Options" if DEVEL @@ -37,3 +41,6 @@ source "toolchain/Config.in" source "target/linux/Config.in" source ".config.in" +menu "busybox" +source "package/busybox/config/Config.in" +endmenu -- cgit v1.2.3 From 93e50b06ca295bc34326f6221b48ff5e94ccaa12 Mon Sep 17 00:00:00 2001 From: mbm Date: Fri, 19 May 2006 22:46:24 +0000 Subject: clean up menu configuration git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3801 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index ae959f683..4a887cc13 100644 --- a/Config.in +++ b/Config.in @@ -8,23 +8,24 @@ config HAVE_DOT_CONFIG source "target/Config.in" -config DEVEL +config ALL + bool "Select all packages by default" + default n + +menuconfig DEVEL bool "Advanced configuration options (for developers)" default n select BUILDOPTS select TOOLCHAINOPTS -config ALL - bool "Select all packages by default" - default n +menuconfig BUILDOPTS + bool "Build Options" if DEVEL config WGET string + prompt "WGET command" if BUILDOPTS default "wget --passive-ftp -nd" -menuconfig BUILDOPTS - bool "Build Options" if DEVEL - config TAR_VERBOSITY bool prompt "Tar verbose" if BUILDOPTS @@ -41,6 +42,3 @@ source "toolchain/Config.in" source "target/linux/Config.in" source ".config.in" -menu "busybox" -source "package/busybox/config/Config.in" -endmenu -- cgit v1.2.3 From d3b73f5c07d60bc9cd0f61e43c4be30ea98f65cb Mon Sep 17 00:00:00 2001 From: nbd Date: Fri, 2 Jun 2006 16:17:56 +0000 Subject: remove unused wget menuconfig option; make the package autorebuild optional (but enabled by default) git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3896 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 4a887cc13..740205e3e 100644 --- a/Config.in +++ b/Config.in @@ -21,10 +21,12 @@ menuconfig DEVEL menuconfig BUILDOPTS bool "Build Options" if DEVEL -config WGET - string - prompt "WGET command" if BUILDOPTS - default "wget --passive-ftp -nd" +config AUTOREBUILD + bool + prompt "Automatic rebuild of packages" if BUILDOPTS + default y + help + Automatically rebuild packages when their files change config TAR_VERBOSITY bool -- cgit v1.2.3 From 1b14a20c70b78c037ef4bcc6d1edb61ea8b27e68 Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 21 Jun 2006 03:17:13 +0000 Subject: fix and enable the sdk git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4037 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 740205e3e..74bd64846 100644 --- a/Config.in +++ b/Config.in @@ -40,7 +40,42 @@ config JLEVEL help Number of jobs to run simultanesouly +source "target/sdk/Config.in" source "toolchain/Config.in" + +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 + 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 + +endmenu + source "target/linux/Config.in" source ".config.in" -- cgit v1.2.3 From b0107120a73002d99673d1ce0ea22dc9c646472e Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 21 Jun 2006 13:02:37 +0000 Subject: reorder sdk menuconfig entry, so that it does not force the toolchain selection into the main menu git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4039 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 74bd64846..573cda50a 100644 --- a/Config.in +++ b/Config.in @@ -40,8 +40,8 @@ config JLEVEL help Number of jobs to run simultanesouly -source "target/sdk/Config.in" source "toolchain/Config.in" +source "target/sdk/Config.in" menu "Target Images" config TARGET_ROOTFS_INITRAMFS -- cgit v1.2.3 From a7f73be9fd898dbafddc6f081b52c783acc80b97 Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 2 Jul 2006 15:10:04 +0000 Subject: Disable squashfs for au1000 target since it does not allow the user to use the whole flash space git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4107 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 1 + 1 file changed, 1 insertion(+) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 573cda50a..a2e6bddd2 100644 --- a/Config.in +++ b/Config.in @@ -64,6 +64,7 @@ menu "Target Images" depends !LINUX_2_6_ARUBA depends !LINUX_2_6_XSCALE depends !TARGET_ROOTFS_INITRAMFS + depends !LINUX_2_6_AU1000 help Build a squashfs-lzma root filesystem -- cgit v1.2.3 From d4641bd34dcc4fd0eab0b68c5b1d3a2b9ea3a9d2 Mon Sep 17 00:00:00 2001 From: groz Date: Thu, 20 Jul 2006 21:06:47 +0000 Subject: UML target completed. Added ext2 target fs for use with uml images git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4178 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Config.in') diff --git a/Config.in b/Config.in index a2e6bddd2..e059f06ab 100644 --- a/Config.in +++ b/Config.in @@ -74,6 +74,14 @@ menu "Target Images" depends !TARGET_ROOTFS_INITRAMFS help Build a compressed tar archive of the the root filesystem + + config TARGET_ROOTFS_EXT2FS + bool "ext2" + default n + depends !TARGET_ROOTFS_INITRAMFS + help + Ext2 file system with some free space for uml images + endmenu -- cgit v1.2.3 From 8d7b0ad8f4175c9f94b1e2cabb7e6e9a44224c0e Mon Sep 17 00:00:00 2001 From: mbm Date: Tue, 25 Jul 2006 18:49:43 +0000 Subject: introduce new BROKEN menuconfig option for hiding known broken settings git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4283 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Config.in') diff --git a/Config.in b/Config.in index e059f06ab..752e1d93e 100644 --- a/Config.in +++ b/Config.in @@ -18,6 +18,10 @@ menuconfig DEVEL select BUILDOPTS select TOOLCHAINOPTS +config BROKEN + bool "Show broken platforms / packages" if DEVEL + default n + menuconfig BUILDOPTS bool "Build Options" if DEVEL -- cgit v1.2.3 From 4c102c1828e19f29666c0818a98c99171565c5b8 Mon Sep 17 00:00:00 2001 From: mbm Date: Fri, 4 Aug 2006 06:56:10 +0000 Subject: and now, finally, enable ccache support git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4434 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 752e1d93e..edcb19a4f 100644 --- a/Config.in +++ b/Config.in @@ -44,6 +44,13 @@ config JLEVEL help Number of jobs to run simultanesouly +config CCACHE + bool + prompt "Use ccache" if BUILDOPTS + default n + help + Compiler cache; see http://ccache.samba.org/ + source "toolchain/Config.in" source "target/sdk/Config.in" -- cgit v1.2.3 From 2f9334da3b7749dd8ab69d1a6289e61bdb26e976 Mon Sep 17 00:00:00 2001 From: nico Date: Tue, 8 Aug 2006 10:24:39 +0000 Subject: enable ext2 rootfs by default when target is uml-2.6 git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4527 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index edcb19a4f..caa794479 100644 --- a/Config.in +++ b/Config.in @@ -88,7 +88,7 @@ menu "Target Images" config TARGET_ROOTFS_EXT2FS bool "ext2" - default n + default y if LINUX_2_6_UML depends !TARGET_ROOTFS_INITRAMFS help Ext2 file system with some free space for uml images -- cgit v1.2.3 From 20f30a63469d4bc8be940376bda17c8d68edbc12 Mon Sep 17 00:00:00 2001 From: mbm Date: Thu, 10 Aug 2006 19:25:26 +0000 Subject: add secret option to use host's toolchain when native compiling git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4553 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index caa794479..d1d66ff0d 100644 --- a/Config.in +++ b/Config.in @@ -16,7 +16,7 @@ menuconfig DEVEL bool "Advanced configuration options (for developers)" default n select BUILDOPTS - select TOOLCHAINOPTS + select TOOLCHAINOPTS if !NATIVE_TOOLCHAIN config BROKEN bool "Show broken platforms / packages" if DEVEL -- cgit v1.2.3 From 90569110588029d61ff84bb17397805dfd8edb5a Mon Sep 17 00:00:00 2001 From: nbd Date: Sat, 23 Sep 2006 22:03:23 +0000 Subject: clean up filesystem selction git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4847 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'Config.in') diff --git a/Config.in b/Config.in index d1d66ff0d..7b28255fb 100644 --- a/Config.in +++ b/Config.in @@ -64,31 +64,28 @@ menu "Target Images" config TARGET_ROOTFS_JFFS2 bool "jffs2" - default y + default y if USES_JFFS2 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 + default y if USES_SQUASHFS depends !TARGET_ROOTFS_INITRAMFS - depends !LINUX_2_6_AU1000 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 + default y if !USES_SQUASHFS && !USES_JFFS2 depends !TARGET_ROOTFS_INITRAMFS help Build a compressed tar archive of the the root filesystem config TARGET_ROOTFS_EXT2FS bool "ext2" - default y if LINUX_2_6_UML + default y if !USES_SQUASHFS && !USES_JFFS2 depends !TARGET_ROOTFS_INITRAMFS help Ext2 file system with some free space for uml images -- cgit v1.2.3 From 5cd5287c63bd0be72b4ae00fc1af508a2b42e541 Mon Sep 17 00:00:00 2001 From: nbd Date: Sun, 8 Oct 2006 15:48:56 +0000 Subject: add grub based images for x86-2.6 - still a bit hackish, but works with ext2 and jffs2 git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4962 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Config.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 7b28255fb..74b369624 100644 --- a/Config.in +++ b/Config.in @@ -90,6 +90,9 @@ menu "Target Images" help Ext2 file system with some free space for uml images +comment "Image Options" + +source "target/image/*/Config.in" endmenu -- cgit v1.2.3