Commit e420a887 authored by Mike Frysinger's avatar Mike Frysinger
Browse files

incorporate patches from marc in bug #273 to add support for nios2

parent b36f67cc
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -28,6 +28,8 @@ config BR2_mips
	bool "mips"
config BR2_mipsel
	bool "mipsel"
config BR2_nios2
	bool "nios2"
config BR2_powerpc
	bool "powerpc"
config BR2_sh
@@ -93,6 +95,7 @@ config BR2_ARCH
	default "m68k"		if BR2_m68k
	default "mips"		if BR2_mips
	default "mipsel"	if BR2_mipsel
	default "nios2"		if BR2_nios2
	default "powerpc"	if BR2_powerpc
	default "sh2a_nofpueb"	if BR2_sh2a_nofpueb
	default "sh2eb"		if BR2_sh2eb
@@ -106,7 +109,7 @@ config BR2_ARCH
config BR2_ENDIAN
	string
	default "LITTLE" if BR2_arm || BR2_cris || BR2_i386 || BR2_mipsel || \
	                    BR2_sh3 || BR2_sh4 || BR2_x86_64
	                    BR2_sh3 || BR2_sh4 || BR2_x86_64 || BR2_nios2
	default "BIG"    if BR2_alpha || BR2_armeb || BR2_m68k || BR2_mips || \
	                    BR2_powerpc || BR2_sh2a_nofpueb || BR2_sh2eb || \
	                    BR2_sh3eb || BR2_sh4eb || BR2_sparc
@@ -204,4 +207,3 @@ source "toolchain/Config.in"
source "package/Config.in"

source "target/Config.in"
+38356 −0

File added.

Preview size limit exceeded, changes collapsed.

+10 −0
Original line number Diff line number Diff line
@@ -9,36 +9,46 @@ choice
	  Select the version of binutils you wish to use.

	config BR2_BINUTILS_VERSION_2_14_90_0_8
		depends !BR2_nios2
		bool "binutils 2.14.90.0.8"

	config BR2_BINUTILS_VERSION_2_15
		bool "binutils 2.15"

	config BR2_BINUTILS_VERSION_2_15_94_0_2_2
		depends !BR2_nios2
		bool "binutils 2.15.94.0.2.2"

	config BR2_BINUTILS_VERSION_2_15_97
		depends !BR2_nios2
		bool "binutils 2.15.97"

	config BR2_BINUTILS_VERSION_2_16
		depends !BR2_nios2
		bool "binutils 2.16"

	config BR2_BINUTILS_VERSION_2_16_1
		depends !BR2_nios2
		bool "binutils 2.16.1"

	config BR2_BINUTILS_VERSION_2_16_90_0_3
		depends !BR2_nios2
		bool "binutils 2.16.90.0.3"

	config BR2_BINUTILS_VERSION_2_16_91_0_2
		depends !BR2_nios2
		bool "binutils 2.16.91.0.2"

	config BR2_BINUTILS_VERSION_2_16_91_0_3
		depends !BR2_nios2
		bool "binutils 2.16.91.0.3"

	config BR2_BINUTILS_VERSION_2_16_91_0_4
		depends !BR2_nios2
		bool "binutils 2.16.91.0.4"

	config BR2_BINUTILS_VERSION_2_16_91_0_5
		depends !BR2_nios2
		bool "binutils 2.16.91.0.5"

endchoice
+10210 −0

File added.

Preview size limit exceeded, changes collapsed.

+10210 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading