Changeset 855544c in freewrt
- Timestamp:
- Jun 10, 2006, 11:54:01 AM (20 years ago)
- Branches:
- freewrt_1_0, freewrt_2_0
- Children:
- 14ccb40
- Parents:
- 10e6184
- Files:
-
- 8 edited
-
Config.in (modified) (2 diffs)
-
Config.in.devel (modified) (2 diffs)
-
Makefile (modified) (4 diffs)
-
package/Config.in (modified) (2 diffs)
-
package/sdk/Config.in (modified) (1 diff)
-
toolchain/Config.in (modified) (2 diffs)
-
toolchain/gcc/Config.in (modified) (2 diffs)
-
toolchain/gcc/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Config.in
r10e6184 r855544c 1 # 2 3 mainmenu "OpenWrt Configuration" 1 mainmenu "FreeWRT Configuration" 4 2 5 3 config MODULES … … 102 100 103 101 source "target/Config.in" 102 source "target/linux/Config.in" 103 source "package/Config.in" 104 104 source "toolchain/Config.in" 105 source "package/Config.in"106 source "target/linux/Config.in" -
Config.in.devel
r10e6184 r855544c 4 4 default y 5 5 6 mainmenu " OpenWrtConfiguration"6 mainmenu "FreeWRT Configuration" 7 7 8 8 config MODULES … … 103 103 endmenu 104 104 105 source "target/linux/Config.in" 106 source "package/Config.in" 105 107 source "toolchain/Config.in" 106 source "package/Config.in"107 source "target/linux/Config.in" -
Makefile
r10e6184 r855544c 31 31 CONFIG_CONFIG_IN = Config.in 32 32 endif 33 CONFIG_DEFCONFIG = .defconfig34 33 CONFIG = package/config 35 34 36 35 noconfig_targets := menuconfig config oldconfig randconfig \ 37 defconfigallyesconfig allnoconfig tags36 allyesconfig allnoconfig tags 38 37 39 38 # Pull in the user's configuration file … … 113 112 114 113 distclean: dirclean 115 rm -rf $(STAMP_DIR) $( DL_DIR) $(TOOL_BUILD_DIR) $(STAGING_DIR)114 rm -rf $(STAMP_DIR) $(TOOL_BUILD_DIR) $(STAGING_DIR) 116 115 rm -f .config* .tmpconfig.h 117 116 … … 125 124 $(CONFIG)/conf: 126 125 $(MAKE) -C $(CONFIG) conf 127 -@if [ ! -f .config ] ; then \128 cp $(CONFIG_DEFCONFIG) .config; \129 fi130 126 $(CONFIG)/mconf: 131 127 $(MAKE) -C $(CONFIG) 132 -@if [ ! -f .config ] ; then \133 cp $(CONFIG_DEFCONFIG) .config; \134 fi135 128 136 129 menuconfig: $(CONFIG)/mconf … … 170 163 -./scripts/configtest.pl 171 164 172 defconfig: $(CONFIG)/conf173 -touch .config174 -cp .config .config.test175 @$(CONFIG)/conf -d $(CONFIG_CONFIG_IN)176 -./scripts/configtest.pl177 178 165 endif # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y) -
package/Config.in
r10e6184 r855544c 1 1 # 2 2 3 menu " OpenWrtPackage Selection"3 menu "Package Selection" 4 4 5 5 comment "Package categories" … … 331 331 332 332 config BR2_PACKAGE_IMAGEBUILDER 333 bool " OpenWrtImage Builder"333 bool "Image Builder" 334 334 default y if CONFIG_DEVEL 335 335 help 336 Build an OpenWrtImage Builder.336 Build an Image Builder. 337 337 This package contains the necessary (precompiled) tools and all packages to generate 338 338 firmware images from package lists, without having to use the full buildroot. -
package/sdk/Config.in
r10e6184 r855544c 1 1 config BR2_PACKAGE_SDK 2 bool " OpenWrt SDK"2 bool "SDK - software development kit" 3 3 default y if CONFIG_DEVEL 4 4 help 5 Build an OpenWrt SDK.6 5 This is essentially a stripped-down version of the buildroot 7 6 with a precompiled toolchain. It can be used to develop and 8 test packages for OpenWrt before including them in the buildroot7 test packages for FreeWRT before including them in the buildroot. 9 8 -
toolchain/Config.in
r10e6184 r855544c 1 #2 3 menu "Toolchain Options"4 1 5 2 source "toolchain/uClibc/Config.in" 6 3 source "toolchain/binutils/Config.in" 7 4 source "toolchain/gcc/Config.in" 8 9 if CONFIG_DEVEL10 comment "Common Toolchain Options"11 endif12 if !CONFIG_DEVEL13 comment "Using defaults"14 endif15 5 16 6 config BR2_ENABLE_MULTILIB … … 48 38 Optimizations to use when building for the target host. 49 39 50 # Might be worth experimenting with for gcc 3.4.x.51 #GCC_WITH_CPU:=52 #GCC_WITH_ARCH:=53 #GCC_WITH_TUNE:=54 55 #GCC_WITH_CPU:=--with-cpu=56 #GCC_WITH_ARCH:=--with-arch=57 #GCC_WITH_TUNE:=--with-tune=58 59 60 endmenu61 -
toolchain/gcc/Config.in
r10e6184 r855544c 1 # Choose gcc version.2 # WARNING -- 2.95 currently only builds for i386, arm, mips*, and powerpc.3 # WARNING -- 2.95 does not currently build natively for the target.4 5 1 if CONFIG_DEVEL 6 2 comment "Gcc Options" … … 13 9 config BR2_GCC_VERSION_3_4_4 14 10 bool 15 default y if BR2_LINUX_2_4_BRCM16 11 17 12 config BR2_GCC_VERSION_4_0_3 18 13 bool 19 default y if BR2_LINUX_2_6_ARUBA || BR2_LINUX_2_6_XSCALE20 14 21 15 config BR2_GCC_VERSION_4_1_0 -
toolchain/gcc/Makefile
r10e6184 r855544c 80 80 endif 81 81 endif 82 $(SED) 's,\(version_string.. = "[0-9\.]*\).*\(";\),\1 ( OpenWrt-2.0)\2,' $(GCC_DIR)/gcc/version.c83 $(SED) 's,\(bug_report_url.. = "\).*\(";\),\1<URL:http s://dev.openwrt.org/>\2,' $(GCC_DIR)/gcc/version.c82 $(SED) 's,\(version_string.. = "[0-9\.]*\).*\(";\),\1 (FreeWrt)\2,' $(GCC_DIR)/gcc/version.c 83 $(SED) 's,\(bug_report_url.. = "\).*\(";\),\1<URL:http://www.freewrt.org/development>\2,' $(GCC_DIR)/gcc/version.c 84 84 touch $(GCC_DIR)/.patched 85 85
Note:
See TracChangeset
for help on using the changeset viewer.
