forked from len0rd/rockbox
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,8 +43,9 @@ fi
|
||||||
echo > checkwps.failures
|
echo > checkwps.failures
|
||||||
|
|
||||||
awk -f $rootdir/parse_configure.awk $rootdir/../configure | (
|
awk -f $rootdir/parse_configure.awk $rootdir/../configure | (
|
||||||
while read target model
|
while read target model blonly
|
||||||
do
|
do
|
||||||
|
if [ "$blonly" == "no" ] ; then
|
||||||
make -j $jobs clean
|
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
|
$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
|
make -j $jobs
|
||||||
|
@ -53,5 +54,6 @@ awk -f $rootdir/parse_configure.awk $rootdir/../configure | (
|
||||||
else
|
else
|
||||||
echo "checkwps.$model" >> checkwps.failures
|
echo "checkwps.$model" >> checkwps.failures
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
)
|
)
|
||||||
|
|
|
@ -2,10 +2,15 @@ BEGIN { FS="[|)]" }
|
||||||
|
|
||||||
/^[ \t]*([0-9]+)\|([^)]+)\)$/ {
|
/^[ \t]*([0-9]+)\|([^)]+)\)$/ {
|
||||||
model=$2
|
model=$2
|
||||||
|
blonly="no"
|
||||||
|
}
|
||||||
|
|
||||||
|
/^[ \t]*blonly="[^"]+"$/ {
|
||||||
|
blonly="yes"
|
||||||
}
|
}
|
||||||
|
|
||||||
/^[ \t]*target="[^"]+"$/ {
|
/^[ \t]*target="[^"]+"$/ {
|
||||||
match($0, "=\".+\"")
|
match($0, "=\".+\"")
|
||||||
target=substr($0, RSTART+2, RLENGTH-3)
|
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)
|
80|ipodnano3g)
|
||||||
target_id=117
|
target_id=117
|
||||||
modelname="ipodnano3g"
|
modelname="ipodnano3g"
|
||||||
|
blonly="yes"
|
||||||
target="IPOD_NANO3G"
|
target="IPOD_NANO3G"
|
||||||
memory=32 # always
|
memory=32 # always
|
||||||
arm926ejscc
|
arm926ejscc
|
||||||
|
@ -2707,7 +2708,6 @@ fi
|
||||||
output="rockbox.ipod"
|
output="rockbox.ipod"
|
||||||
appextra="recorder:gui:radio"
|
appextra="recorder:gui:radio"
|
||||||
plugins="yes"
|
plugins="yes"
|
||||||
swcodec="yes"
|
|
||||||
bootoutput="bootloader-$modelname.ipod"
|
bootoutput="bootloader-$modelname.ipod"
|
||||||
# toolset is the tools within the tools directory that we build for
|
# toolset is the tools within the tools directory that we build for
|
||||||
# this particular target.
|
# this particular target.
|
||||||
|
@ -2721,6 +2721,7 @@ fi
|
||||||
81|ipodnano4g)
|
81|ipodnano4g)
|
||||||
target_id=118
|
target_id=118
|
||||||
modelname="ipodnano4g"
|
modelname="ipodnano4g"
|
||||||
|
blonly="yes"
|
||||||
target="IPOD_NANO4G"
|
target="IPOD_NANO4G"
|
||||||
memory=32 # always
|
memory=32 # always
|
||||||
arm1176jzscc
|
arm1176jzscc
|
||||||
|
@ -2730,7 +2731,6 @@ fi
|
||||||
output="rockbox.ipod"
|
output="rockbox.ipod"
|
||||||
appextra="recorder:gui:radio"
|
appextra="recorder:gui:radio"
|
||||||
plugins="yes"
|
plugins="yes"
|
||||||
swcodec="yes"
|
|
||||||
bootoutput="bootloader-$modelname.ipod"
|
bootoutput="bootloader-$modelname.ipod"
|
||||||
# toolset is the tools within the tools directory that we build for
|
# toolset is the tools within the tools directory that we build for
|
||||||
# this particular target.
|
# this particular target.
|
||||||
|
@ -3015,6 +3015,7 @@ fi
|
||||||
110|meizum6sl)
|
110|meizum6sl)
|
||||||
target_id=49
|
target_id=49
|
||||||
modelname="meizum6sl"
|
modelname="meizum6sl"
|
||||||
|
blonly="yes"
|
||||||
target="MEIZU_M6SL"
|
target="MEIZU_M6SL"
|
||||||
memory=16 # always
|
memory=16 # always
|
||||||
arm940tbecc
|
arm940tbecc
|
||||||
|
@ -3036,6 +3037,7 @@ fi
|
||||||
111|meizum6sp)
|
111|meizum6sp)
|
||||||
target_id=46
|
target_id=46
|
||||||
modelname="meizum6sp"
|
modelname="meizum6sp"
|
||||||
|
blonly="yes"
|
||||||
target="MEIZU_M6SP"
|
target="MEIZU_M6SP"
|
||||||
memory=16 # always
|
memory=16 # always
|
||||||
arm940tbecc
|
arm940tbecc
|
||||||
|
@ -4285,6 +4287,7 @@ fi
|
||||||
248|erosqnative_v3)
|
248|erosqnative_v3)
|
||||||
target_id=116
|
target_id=116
|
||||||
modelname="erosqnative_v3"
|
modelname="erosqnative_v3"
|
||||||
|
blonly="yes"
|
||||||
target="EROS_QN"
|
target="EROS_QN"
|
||||||
memory=32
|
memory=32
|
||||||
mipsr2elcc
|
mipsr2elcc
|
||||||
|
@ -4312,6 +4315,7 @@ fi
|
||||||
249|erosqnative_v4)
|
249|erosqnative_v4)
|
||||||
target_id=116
|
target_id=116
|
||||||
modelname="erosqnative_v4"
|
modelname="erosqnative_v4"
|
||||||
|
blonly="yes"
|
||||||
target="EROS_QN"
|
target="EROS_QN"
|
||||||
memory=32
|
memory=32
|
||||||
mipsr2elcc
|
mipsr2elcc
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue