mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
checkwps: Exclude targets that only exist as a bootloader from buildall
Change-Id: I95cb65a204b4e509d48c9a8fb009d438f382a9f6
This commit is contained in:
parent
7c30b318e4
commit
8a94a37502
3 changed files with 23 additions and 12 deletions
|
@ -43,15 +43,17 @@ fi
|
|||
echo > checkwps.failures
|
||||
|
||||
awk -f $rootdir/parse_configure.awk $rootdir/../configure | (
|
||||
while read target model
|
||||
while read target model blonly
|
||||
do
|
||||
make -j $jobs clean
|
||||
$toolsdir/configure --target=$model --type=C --ram=32 --lcdwidth=100 --lcdheight=100 # 32 should always give default RAM, assume 100x100 for RaaA for now
|
||||
make -j $jobs
|
||||
if [ -f checkwps.$model ] ; then
|
||||
mv checkwps.$model $outdir
|
||||
else
|
||||
echo "checkwps.$model" >> checkwps.failures
|
||||
fi
|
||||
if [ "$blonly" == "no" ] ; then
|
||||
make -j $jobs clean
|
||||
$toolsdir/configure --target=$model --type=C --ram=32 --lcdwidth=100 --lcdheight=100 # 32 should always give default RAM, assume 100x100 for RaaA for now
|
||||
make -j $jobs
|
||||
if [ -f checkwps.$model ] ; then
|
||||
mv checkwps.$model $outdir
|
||||
else
|
||||
echo "checkwps.$model" >> checkwps.failures
|
||||
fi
|
||||
fi
|
||||
done
|
||||
)
|
||||
|
|
|
@ -2,10 +2,15 @@ BEGIN { FS="[|)]" }
|
|||
|
||||
/^[ \t]*([0-9]+)\|([^)]+)\)$/ {
|
||||
model=$2
|
||||
blonly="no"
|
||||
}
|
||||
|
||||
/^[ \t]*blonly="[^"]+"$/ {
|
||||
blonly="yes"
|
||||
}
|
||||
|
||||
/^[ \t]*target="[^"]+"$/ {
|
||||
match($0, "=\".+\"")
|
||||
target=substr($0, RSTART+2, RLENGTH-3)
|
||||
print target, model
|
||||
print target, model, blonly
|
||||
}
|
||||
|
|
8
tools/configure
vendored
8
tools/configure
vendored
|
@ -2698,6 +2698,7 @@ fi
|
|||
80|ipodnano3g)
|
||||
target_id=117
|
||||
modelname="ipodnano3g"
|
||||
blonly="yes"
|
||||
target="IPOD_NANO3G"
|
||||
memory=32 # always
|
||||
arm926ejscc
|
||||
|
@ -2707,7 +2708,6 @@ fi
|
|||
output="rockbox.ipod"
|
||||
appextra="recorder:gui:radio"
|
||||
plugins="yes"
|
||||
swcodec="yes"
|
||||
bootoutput="bootloader-$modelname.ipod"
|
||||
# toolset is the tools within the tools directory that we build for
|
||||
# this particular target.
|
||||
|
@ -2721,6 +2721,7 @@ fi
|
|||
81|ipodnano4g)
|
||||
target_id=118
|
||||
modelname="ipodnano4g"
|
||||
blonly="yes"
|
||||
target="IPOD_NANO4G"
|
||||
memory=32 # always
|
||||
arm1176jzscc
|
||||
|
@ -2730,7 +2731,6 @@ fi
|
|||
output="rockbox.ipod"
|
||||
appextra="recorder:gui:radio"
|
||||
plugins="yes"
|
||||
swcodec="yes"
|
||||
bootoutput="bootloader-$modelname.ipod"
|
||||
# toolset is the tools within the tools directory that we build for
|
||||
# this particular target.
|
||||
|
@ -3015,6 +3015,7 @@ fi
|
|||
110|meizum6sl)
|
||||
target_id=49
|
||||
modelname="meizum6sl"
|
||||
blonly="yes"
|
||||
target="MEIZU_M6SL"
|
||||
memory=16 # always
|
||||
arm940tbecc
|
||||
|
@ -3036,6 +3037,7 @@ fi
|
|||
111|meizum6sp)
|
||||
target_id=46
|
||||
modelname="meizum6sp"
|
||||
blonly="yes"
|
||||
target="MEIZU_M6SP"
|
||||
memory=16 # always
|
||||
arm940tbecc
|
||||
|
@ -4285,6 +4287,7 @@ fi
|
|||
248|erosqnative_v3)
|
||||
target_id=116
|
||||
modelname="erosqnative_v3"
|
||||
blonly="yes"
|
||||
target="EROS_QN"
|
||||
memory=32
|
||||
mipsr2elcc
|
||||
|
@ -4312,6 +4315,7 @@ fi
|
|||
249|erosqnative_v4)
|
||||
target_id=116
|
||||
modelname="erosqnative_v4"
|
||||
blonly="yes"
|
||||
target="EROS_QN"
|
||||
memory=32
|
||||
mipsr2elcc
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue