u-boot-brain/cpu
Shinya Kuribayashi 141ba1cad8 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
Current trick to pick up GNU assembler minor version uses a dot(.) as a
delimiter, and take the second field to obtain minor version number. But
as can be expected, this doesn't work with a version string which has
dots more than needs.

Here's an example:

$ mips-linux-gnu-as --version | grep 'GNU assembler'
GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
$ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
2-129) 2
$

This patch restricts the version format to 2.XX.XX... This will work
in most cases.

$ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
2.18.50.20080215
$ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
18
$

Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
2008-05-03 13:51:44 +09:00
..
74xx_7xx PPC: Use r2 instead of r29 as global data pointer 2008-02-14 22:43:22 +01:00
arm720t ARM: cleanup duplicated exception handlingcode 2008-02-14 09:38:21 +00:00
arm920t USB: fix more GCC 4.2.x aliasing warnings 2008-04-25 12:44:08 +02:00
arm925t ARM: cleanup duplicated exception handlingcode 2008-02-14 09:38:21 +00:00
arm926ejs ARM: Davinci: Fix DM644x timer overflow handling and cleanup 2008-04-22 23:12:01 +02:00
arm946es ARM: cleanup duplicated exception handlingcode 2008-02-14 09:38:21 +00:00
arm1136 core support for Freescale mx31 2008-04-13 14:20:47 -07:00
arm_intcm ARM: cleanup duplicated exception handlingcode 2008-02-14 09:38:21 +00:00
at32ap AVR32: Make SDRAM refresh rate configurable 2008-02-05 12:14:27 +01:00
blackfin Blackfin: unify cpu and boot modes 2008-03-30 15:50:19 -04:00
i386 cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols. 2007-07-10 10:27:39 -05:00
ixp ARM: cleanup duplicated exception handlingcode 2008-02-14 09:38:21 +00:00
leon2 Coding Style cleanup; update CHANGELOG 2008-04-13 09:59:26 -07:00
leon3 Coding Style cleanup; update CHANGELOG 2008-04-13 09:59:26 -07:00
lh7a40x ARM: cleanup duplicated exception handlingcode 2008-02-14 09:38:21 +00:00
mcf52x2 ColdFire: Get information from the correct GCC 2008-04-30 22:35:13 +02:00
mcf523x ColdFire: Get information from the correct GCC 2008-04-30 22:35:13 +02:00
mcf532x ColdFire: Get information from the correct GCC 2008-04-30 22:35:13 +02:00
mcf547x_8x ColdFire: Get information from the correct GCC 2008-04-30 22:35:13 +02:00
mcf5227x ColdFire: Get information from the correct GCC 2008-04-30 22:35:13 +02:00
mcf5445x ColdFire: Get information from the correct GCC 2008-04-30 22:35:13 +02:00
microblaze [PATCH] Add support for design without interrupt controller 2007-09-24 00:21:19 +02:00
mips [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker 2008-05-03 13:51:44 +09:00
mpc5xx Remove all the search paths from the .lds files. 2008-04-17 23:57:32 -07:00
mpc5xxx USB: fix more GCC 4.2.x aliasing warnings 2008-04-25 12:44:08 +02:00
mpc8xx MPC8xx: Fix libfdt support introduced in commit 77ff7b74 2008-04-02 11:07:20 -04:00
mpc83xx mpc83xx: remove the unused CPM's stuff 2008-04-25 09:34:21 -05:00
mpc85xx 85xx: Add -mno-spe to e500/85xx builds 2008-04-29 20:08:43 +02:00
mpc86xx Fix calculation of I2C clock for some 86xx chips 2008-04-30 22:52:35 +02:00
mpc512x MPC5121e ADS PCI support take 3 2008-03-02 21:44:59 +01:00
mpc824x Remove all the search paths from the .lds files. 2008-04-17 23:57:32 -07:00
mpc8220 Remove all the search paths from the .lds files. 2008-04-17 23:57:32 -07:00
mpc8260 Remove all the search paths from the .lds files. 2008-04-17 23:57:32 -07:00
nios Minor alignment of output, 2nd try. 2007-08-12 21:34:34 +02:00
nios2 cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS 2007-07-09 18:57:22 -05:00
ppc4xx ppc4xx: Fix compilation warning in denali_spd_ddr2.c 2008-04-29 14:44:54 +02:00
pxa pxa: fix assignment from incompatible pointer type 2008-02-17 16:03:56 +01:00
s3c44b0 LWMON5: POST RTC fix 2008-03-20 21:48:46 +01:00
sa1100 ARM: cleanup duplicated exception handlingcode 2008-02-14 09:38:21 +00:00
sh3 sh: Add support SH3 and SH7720 2008-01-15 23:30:40 +09:00
sh4 sh: Add support SH4 cache control 2008-03-28 14:16:13 +09:00