* updated libkcddb (21.12.1 -> 21.12.2), untested
[t2-trunk.git] / target / share / preconfig.in
blob88f63260b52d24d56fa4f7a0e46caaaf00f91de3
2 CFGTEMP_TARGETLIST=
3 for x in target/*; do
4         pkgout
5         if [ -d $x -a $x != "target/share" ]; then
6                 y="`grep '^#Description: ' $x/config.in 2> /dev/null |
7                     head -n 1 | cut -d ' ' -f2- | tr ' ' '_'`"
8                 [ -n "$y" ] || y=`echo ${x#target/} | tr 'a-z' 'A-Z'`
9                 var_append CFGTEMP_TARGETLIST ' ' "${x#target/} $y"
10         fi
11         pkgin
12 done
14 CFGTEMP_IMAGELIST=
15 for x in target/share/*; do
16         if [ -d $x ]; then
17                 y="`grep '^#Description: ' $x/build.sh |
18                     head -n 1 | cut -d ' ' -f2- | tr ' ' '_'`"
19                 [ -n "$y" ] || y="${x#target/share/}_-_No_description_found"
20                 var_append CFGTEMP_IMAGELIST ' ' "${x#target/share/} $y"
21         fi
22 done