mirror of
git://git.savannah.gnu.org/config.git
synced 2025-07-06 13:18:21 +12:00
config.sub: don’t override OS for blackfin, m68knommu, parisc.
A similar issue to the previous patch: make the OS default for the CPU aliases “blackfin,” “m68knommu,” and “parisc” actually be a default and not an override. There have been many OSes for PA/RISC. Both blackfin and m68knommu are definitely used in bare-metal configuration as well as with an OS. And in general, CPU aliases should behave as much like the canonical CPU name as possible. Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
This commit is contained in:

committed by
Dmitry V. Levin

parent
fc40088525
commit
053423ac1b
6
config.sub
vendored
6
config.sub
vendored
@ -1093,7 +1093,7 @@ case $cpu-$vendor in
|
||||
;;
|
||||
blackfin-*)
|
||||
cpu=bfin
|
||||
basic_os=linux
|
||||
basic_os=${basic_os:-linux}
|
||||
;;
|
||||
c54x-*)
|
||||
cpu=tic54x
|
||||
@ -1116,7 +1116,7 @@ case $cpu-$vendor in
|
||||
;;
|
||||
m68knommu-*)
|
||||
cpu=m68k
|
||||
basic_os=linux
|
||||
basic_os=${basic_os:-linux}
|
||||
;;
|
||||
m9s12z-* | m68hcs12z-* | hcs12z-* | s12z-*)
|
||||
cpu=s12z
|
||||
@ -1126,7 +1126,7 @@ case $cpu-$vendor in
|
||||
;;
|
||||
parisc-*)
|
||||
cpu=hppa
|
||||
basic_os=linux
|
||||
basic_os=${basic_os:-linux}
|
||||
;;
|
||||
pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
|
||||
cpu=i586
|
||||
|
Reference in New Issue
Block a user