mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
arm64: MAKEALL, filter armv8 boards from LIST_arm
Signed-off-by: David Feng <fenghua@phytium.com.cn>
This commit is contained in:
parent
129168290a
commit
2475e63475
1 changed files with 11 additions and 1 deletions
12
MAKEALL
12
MAKEALL
|
@ -380,6 +380,12 @@ LIST_ARM11="$(targets_by_cpu arm1136) \
|
|||
|
||||
LIST_ARMV7="$(targets_by_cpu armv7)"
|
||||
|
||||
#########################################################################
|
||||
## ARMV8 Systems
|
||||
#########################################################################
|
||||
|
||||
LIST_ARMV8="$(targets_by_cpu armv8)"
|
||||
|
||||
#########################################################################
|
||||
## AT91 Systems
|
||||
#########################################################################
|
||||
|
@ -404,7 +410,11 @@ LIST_spear="$(targets_by_soc spear)"
|
|||
## ARM groups
|
||||
#########################################################################
|
||||
|
||||
LIST_arm="$(targets_by_arch arm)"
|
||||
LIST_arm="$(targets_by_arch arm | \
|
||||
for ARMV8_TARGET in $LIST_ARMV8; \
|
||||
do sed "/$ARMV8_TARGET/d"; \
|
||||
done) \
|
||||
"
|
||||
|
||||
#########################################################################
|
||||
## MIPS Systems (default = big endian)
|
||||
|
|
Loading…
Reference in a new issue