Changeset b27da3ee in freewrt
- Timestamp:
- Jul 1, 2007, 2:50:08 AM (18 years ago)
- Children:
- aac582b
- Parents:
- 1a0809b
- Files:
-
- 5 added
- 5 edited
-
Config.in (modified) (2 diffs)
-
mk/targets.mk (modified) (1 diff)
-
rules.mk (modified) (1 diff)
-
target/linux/nokernel/Config.in (modified) (3 diffs)
-
toolchain/gcc/Makefile (modified) (1 diff)
-
toolchain/kernel-headers/files/config.cris (added)
-
toolchain/uClibc/files/config.arm (added)
-
toolchain/uClibc/files/config.avr32 (added)
-
toolchain/uClibc/files/config.cris (added)
-
toolchain/uClibc/files/config.powerpc (added)
Legend:
- Unmodified
- Added
- Removed
-
Config.in
r1a0809b rb27da3ee 32 32 config FWRT_mipsel 33 33 tristate 34 35 config FWRT_avr32 36 tristate 37 select FWRT_BIG_ENDIAN 34 38 35 39 config FWRT_armeb … … 77 81 default "arm" if FWRT_arm 78 82 default "armeb" if FWRT_armeb 83 default "avr32" if FWRT_avr32 79 84 default "cris" if FWRT_cris 80 85 default "i386" if FWRT_i386 -
mk/targets.mk
r1a0809b rb27da3ee 75 75 $(eval $(call nokerneltarget_template,2.4,pkgmips,mips,NOKERNEL_MIPS)) 76 76 $(eval $(call nokerneltarget_template,2.4,pkgarmeb,armeb,NOKERNEL_ARMEB)) 77 $(eval $(call nokerneltarget_template,2.4,pkgarm,arm,NOKERNEL_ARM)) 78 $(eval $(call nokerneltarget_template,2.4,pkgcris,cris,NOKERNEL_CRIS)) 79 $(eval $(call nokerneltarget_template,2.4,pkgavr32,avr32,NOKERNEL_AVR32)) 80 $(eval $(call nokerneltarget_template,2.4,pkgpowerpc,powerpc,NOKERNEL_POWERPC)) 77 81 $(eval $(call nokerneltarget_template,2.4,pkgi386,i386,NOKERNEL_I386)) 78 82 -
rules.mk
r1a0809b rb27da3ee 101 101 else ifeq ($(strip ${FWRT_armeb}),y) 102 102 UNAME_M:= arm 103 else ifeq ($(strip ${FWRT_arm}),y) 104 UNAME_M:= arm 105 else ifeq ($(strip ${FWRT_avr32}),y) 106 UNAME_M:= avr32 107 else ifeq ($(strip ${FWRT_cris}),y) 108 UNAME_M:= cris 109 else ifeq ($(strip ${FWRT_powerpc}),y) 110 UNAME_M:= powerpc 103 111 else 104 112 $(error Cannot determine target "uname -m" output) -
target/linux/nokernel/Config.in
r1a0809b rb27da3ee 1 config FWRT_LINUX_NOKERNEL_ARM 2 bool "arm nokernel" 3 depends on FWRT_DEVEL 4 depends on FWRT_TARGET_CATEGORY_NOKERNEL 5 select FWRT_TARGET_NOKERNEL 6 select FWRT_arm 7 help 8 This is a target which does not build a kernel, root filesy- 9 stem or flash image; it is mostly used for testing packages. 10 Where a kernel is required, Linux 2.4 will be used. 11 12 This option selects the little-endian 32-bit ARM platform. 13 1 14 config FWRT_LINUX_NOKERNEL_ARMEB 2 15 bool "armeb nokernel" … … 11 24 12 25 This option selects the big-endian 32-bit ARM platform. 26 27 config FWRT_LINUX_NOKERNEL_AVR32 28 bool "avr32 nokernel" 29 depends on FWRT_DEVEL 30 depends on FWRT_TARGET_CATEGORY_NOKERNEL 31 select FWRT_TARGET_NOKERNEL 32 select FWRT_avr32 33 help 34 This is a target which does not build a kernel, root filesy- 35 stem or flash image; it is mostly used for testing packages. 36 Where a kernel is required, Linux 2.4 will be used. 37 38 This option selects the big-endian 32-bit AVR platform. 39 40 config FWRT_LINUX_NOKERNEL_CRIS 41 bool "cris nokernel" 42 depends on FWRT_DEVEL 43 depends on FWRT_TARGET_CATEGORY_NOKERNEL 44 select FWRT_TARGET_NOKERNEL 45 select FWRT_cris 46 help 47 This is a target which does not build a kernel, root filesy- 48 stem or flash image; it is mostly used for testing packages. 49 Where a kernel is required, Linux 2.4 will be used. 50 51 This option selects the little-endian 32-bit AVR platform. 52 13 53 14 54 config FWRT_LINUX_NOKERNEL_I386 … … 37 77 38 78 This option selects the little-endian 32-bit mips platform. 79 80 config FWRT_LINUX_NOKERNEL_POWERPC 81 bool "powerpc nokernel" 82 depends on FWRT_DEVEL 83 depends on FWRT_TARGET_CATEGORY_NOKERNEL 84 select FWRT_TARGET_NOKERNEL 85 select FWRT_powerpc 86 help 87 This is a target which does not build a kernel, root filesy- 88 stem or flash image; it is mostly used for testing packages. 89 Where a kernel is required, Linux 2.4 will be used. 90 91 This option selects the big-endian 32-bit powerpc platform. -
toolchain/gcc/Makefile
r1a0809b rb27da3ee 107 107 # to include a reference to libgcc.so.1 in all binaries. For flash space 108 108 # saving, we change the specs file to link in a static libgcc here. 109 if neq ($(CPU_ARCH),armeb)109 ifeq ($(CPU_ARCH),mipsel) 110 110 if [ -f $(STAGING_TOOLS)/lib/gcc/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)/specs ] ; then \ 111 111 patch -d $(STAGING_TOOLS)/lib/gcc/$(REAL_GNU_TARGET_NAME)/$(GCC_VERSION)/ -p0 < ./$(GCC_VERSION)/static-libgcc.patch.conditional ; \
Note:
See TracChangeset
for help on using the changeset viewer.
