sets.subr revision 1.185
11.185Smrg# $NetBSD: sets.subr,v 1.185 2019/03/10 11:04:08 mrg Exp $ 21.1Sdyoung# 31.9Slukem 41.9Slukem# 51.11Slukem# The following variables contain defaults for sets.subr functions and callers: 61.9Slukem# setsdir path to src/distrib/sets 71.9Slukem# nlists list of base sets 81.9Slukem# xlists list of x11 sets 91.92Suebayasi# extlists list of extsrc sets 101.9Slukem# obsolete controls if obsolete files are selected instead 111.76Stsutsui# module if != "no", enable MODULE sets 121.9Slukem# shlib shared library format (a.out, elf, or "") 131.9Slukem# stlib static library format (a.out, elf) 141.11Slukem# 151.11Slukem# The following <bsd.own.mk> variables are exported to the environment: 161.11Slukem# MACHINE 171.11Slukem# MACHINE_ARCH 181.11Slukem# MACHINE_CPU 191.87Sskrll# HAVE_BINUTILS 201.48Smrg# HAVE_GCC 211.52Slukem# HAVE_GDB 221.143Snakayama# HAVE_SSP 231.183Schristos# HAVE_OPENSSL 241.11Slukem# TOOLCHAIN_MISSING 251.11Slukem# OBJECT_FMT 261.22Slukem# as well as: 271.22Slukem# 281.95Suebayasi 291.42Sapb# 301.42Sapb# The following variables refer to tools that are used when building sets: 311.42Sapb# 321.43Sapb: ${AWK:=awk} 331.42Sapb: ${CKSUM:=cksum} 341.43Sapb: ${COMM:=comm} 351.44Sapb: ${DATE:=date} 361.43Sapb: ${DB:=db} 371.43Sapb: ${EGREP:=egrep} 381.43Sapb: ${ENV_CMD:=env} # ${ENV} is special to sh(1), ksh(1), etc. 391.44Sapb: ${FGREP:=fgrep} 401.43Sapb: ${FIND:=find} 411.44Sapb: ${GREP:=grep} 421.43Sapb: ${GZIP_CMD:=gzip} # ${GZIP} is special to gzip(1) 431.99Sapb: ${HOSTNAME_CMD:=hostname} # ${HOSTNAME} is special to bash(1) 441.42Sapb: ${HOST_SH:=sh} 451.43Sapb: ${IDENT:=ident} 461.43Sapb: ${JOIN:=join} 471.43Sapb: ${LS:=ls} 481.43Sapb: ${MAKE:=make} 491.42Sapb: ${MKTEMP:=mktemp} 501.43Sapb: ${MTREE:=mtree} 511.43Sapb: ${PASTE:=paste} 521.42Sapb: ${PAX:=pax} 531.43Sapb: ${PRINTF:=printf} 541.43Sapb: ${SED:=sed} 551.43Sapb: ${SORT:=sort} 561.44Sapb: ${STAT:=stat} 571.44Sapb: ${TSORT:=tsort} 581.43Sapb: ${UNAME:=uname} 591.43Sapb: ${WC:=wc} 601.118Suebayasi: ${XARGS:=xargs} 611.43Sapb 621.45Sapb# 631.45Sapb# If printf is a shell builtin command, then we can 641.45Sapb# implement cheaper versions of basename and dirname 651.45Sapb# that do not involve any fork/exec overhead. 661.45Sapb# If printf is not builtin, approximate it using echo, 671.45Sapb# and hope there are no weird file names that cause 681.45Sapb# some versions of echo to do the wrong thing. 691.45Sapb# (Converting to this version of dirname speeded up the 701.45Sapb# syspkgdeps script by an order of magnitude, from 68 711.45Sapb# seconds to 6.3 seconds on one particular host.) 721.45Sapb# 731.45Sapb# Note that naive approximations for dirname 741.45Sapb# using ${foo%/*} do not do the right thing in cases 751.45Sapb# where the result should be "/" or ".". 761.45Sapb# 771.45Sapbcase "$(type printf)" in 781.45Sapb*builtin*) 791.45Sapb basename () 801.45Sapb { 811.45Sapb local bn 821.45Sapb bn="${1##*/}" 831.45Sapb bn="${bn%$2}" 841.45Sapb printf "%s\n" "$bn" 851.45Sapb } 861.45Sapb dirname () 871.45Sapb { 881.45Sapb local dn 891.45Sapb case "$1" in 901.45Sapb ?*/*) dn="${1%/*}" ;; 911.45Sapb /*) dn=/ ;; 921.45Sapb *) dn=. ;; 931.45Sapb esac 941.45Sapb printf "%s\n" "$dn" 951.45Sapb } 961.45Sapb ;; 971.45Sapb*) 981.45Sapb basename () 991.45Sapb { 1001.45Sapb local bn 1011.45Sapb bn="${1##*/}" 1021.45Sapb bn="${bn%$2}" 1031.45Sapb echo "$bn" 1041.45Sapb } 1051.45Sapb dirname () 1061.45Sapb { 1071.45Sapb local dn 1081.45Sapb case "$1" in 1091.45Sapb ?*/*) dn="${1%/*}" ;; 1101.45Sapb /*) dn=/ ;; 1111.45Sapb *) dn=. ;; 1121.45Sapb esac 1131.45Sapb echo "$dn" 1141.45Sapb } 1151.45Sapb ;; 1161.45Sapbesac 1171.45Sapb 1181.108Suebayasi##### 1191.108Suebayasi 1201.9SlukemoIFS=$IFS 1211.9SlukemIFS=" 1221.9Slukem" 1231.100Suebayasi 1241.180Schristosfor x in $( MAKEVERBOSE= ${MAKE} -B -f ${rundir}/mkvars.mk mkvars ); do 1251.108Suebayasi eval export $x 1261.9Slukemdone 1271.100Suebayasi 1281.9SlukemIFS=$oIFS 1291.9Slukem 1301.180SchristosMKVARS="$( MAKEVERBOSE= ${MAKE} -B -f ${rundir}/mkvars.mk mkvars | ${SED} -e 's,=.*,,' | ${XARGS} )" 1311.100Suebayasi 1321.105Suebayasi##### 1331.105Suebayasi 1341.117Suebayasisetsdir=${rundir} 1351.9Slukemobsolete=0 1361.91Sdyoungif [ "${MKKMOD}" = "no" ]; then 1371.91Sdyoung module=no # MODULEs are off. 1381.125Snjoly modset="" 1391.125Snjolyelse 1401.125Snjoly module=yes 1411.125Snjoly modset="modules" 1421.125Snjolyfi 1431.125Snjolyif [ "${MKATF}" = "no" ]; then 1441.125Snjoly testset="" 1451.125Snjolyelse 1461.125Snjoly testset="tests" 1471.9Slukemfi 1481.171Smattif [ "${MKDEBUG}" = "no" -a "${MKDEBUGLIB}" = "no" ]; then 1491.141Schristos debugset="" 1501.142Schristos xdebugset="" 1511.141Schristoselse 1521.141Schristos debugset="debug" 1531.142Schristos xdebugset="xdebug" 1541.141Schristosfi 1551.31Sjmc# Determine lib type. Do this first so stlib also gets set. 1561.31Sjmcif [ "${OBJECT_FMT}" = "ELF" ]; then 1571.9Slukem shlib=elf 1581.9Slukemelse 1591.9Slukem shlib=aout 1601.9Slukemfi 1611.9Slukemstlib=$shlib 1621.31Sjmc# Now check for MKPIC or specials and turn off shlib if need be. 1631.31Sjmcif [ "${MKPIC}" = "no" ]; then 1641.31Sjmc shlib=no 1651.31Sjmcfi 1661.141Schristosnlists="base comp $debugset etc games man misc $modset $testset text" 1671.142Schristosxlists="xbase xcomp $xdebugset xetc xfont xserver" 1681.92Suebayasiextlists="extbase extcomp extetc" 1691.9Slukem 1701.136SchristosOSRELEASE=$(${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh -k) 1711.81SrmindMODULEDIR="stand/${MACHINE}/${OSRELEASE}/modules" 1721.62SadSUBST="s#@MODULEDIR@#${MODULEDIR}#g" 1731.62SadSUBST="${SUBST};s#@OSRELEASE@#${OSRELEASE}#g" 1741.62SadSUBST="${SUBST};s#@MACHINE@#${MACHINE}#g" 1751.60Sad 1761.9Slukem# 1771.9Slukem# list_set_files setfile [...] 1781.1Sdyoung# 1791.9Slukem# Produce a packing list for setfile(s). 1801.9Slukem# In each file, a record consists of a path and a System Package name, 1811.9Slukem# separated by whitespace. E.g., 1821.9Slukem# 1831.185Smrg# # $NetBSD: sets.subr,v 1.185 2019/03/10 11:04:08 mrg Exp $ 1841.9Slukem# . base-sys-root [keyword[,...]] 1851.9Slukem# ./altroot base-sys-root 1861.9Slukem# ./bin base-sys-root 1871.9Slukem# ./bin/[ base-util-root 1881.9Slukem# ./bin/cat base-util-root 1891.9Slukem# [...] 1901.9Slukem# 1911.9Slukem# A # in the first column marks a comment. 1921.9Slukem# 1931.9Slukem# If ${obsolete} != 0, only entries with an "obsolete" keyword will 1941.52Slukem# be printed. All other keywords must be present. 1951.9Slukem# 1961.9Slukem# The third field is an optional comma separated list of keywords to 1971.9Slukem# control if a record is printed; every keyword listed must be enabled 1981.179Schristos# for the record to be printed. The list of all avalaible make variables 1991.179Schristos# that can be turned on or off can be found by running in this directory: 2001.179Schristos# 2011.179Schristos# make -f mkvars.mk mkvarsyesno 2021.179Schristos# 2031.179Schristos# These MK<NAME> variables can be used as selectors in the sets as <name>. 2041.179Schristos# 2051.179Schristos# The following extra keywords are also available, listed by: 2061.179Schristos# 2071.179Schristos# make -f mkvars.mk mkextravars 2081.13Slukem# 2091.179Schristos# These are: 2101.179Schristos# 1. The HAVE_<name>: 2111.179Schristos# ssp ${HAVE_SSP} != no 2121.160Sjoerg# libgcc_eh ${HAVE_LIBGCC_EH} != no 2131.87Sskrll# binutils=<n> <n> = value of ${HAVE_BINUTILS} 2141.52Slukem# gcc=<n> <n> = value of ${HAVE_GCC} 2151.52Slukem# gdb=<n> <n> = value of ${HAVE_GDB} 2161.183Schristos# openssl=<n> <n> = value of ${HAVE_OPENSSL} 2171.177Smrg# xorg_server_ver=<n> <n> = value of ${HAVE_XORG_SERVER_VER} 2181.185Smrg# mesa_ver=<n> <n> = value of ${HAVE_MESA_VER} 2191.52Slukem# 2201.179Schristos# 2. The USE_<name>: 2211.41Slukem# use_inet6 ${USE_INET6} != no 2221.41Slukem# use_kerberos ${USE_KERBEROS} != no 2231.179Schristos# use_ldap ${USE_LDAP} != no 2241.41Slukem# use_yp ${USE_YP} != no 2251.41Slukem# 2261.179Schristos# 3. Finally: 2271.179Schristos# dummy dummy entry (ignored) 2281.179Schristos# obsolete file is obsolete, and only printed if 2291.179Schristos# ${obsolete} != 0 2301.179Schristos# 2311.179Schristos# solaris ${MKDTRACE} != no or ${MKZFS} != no or ${MKCTF} != no 2321.179Schristos# 2331.179Schristos# 2341.179Schristos# endian=<n> <n> = value of ${TARGET_ENDIANNESS} 2351.179Schristos# 2361.179Schristos# 2371.22Slukem# .cat if ${MKMANZ} != "no" && ${MKCATPAGES} != "no" 2381.22Slukem# automatically append ".gz" to the filename 2391.22Slukem# 2401.22Slukem# .man if ${MKMANZ} != "no" && ${MKMAN} != "no" 2411.22Slukem# automatically append ".gz" to the filename 2421.1Sdyoung# 2431.8Slukemlist_set_files() 2441.8Slukem{ 2451.83Sapb if [ ${MAKEVERBOSE:-2} -lt 3 ]; then 2461.65She verbose=false 2471.65She else 2481.65She verbose=true 2491.65She fi 2501.116Suebayasi print_set_lists "$@" | \ 2511.43Sapb ${AWK} -v obsolete=${obsolete} ' 2521.9Slukem BEGIN { 2531.52Slukem if (obsolete) 2541.52Slukem wanted["obsolete"] = 1 2551.52Slukem 2561.100Suebayasi split("'"${MKVARS}"'", needvars) 2571.165Smatt doingcompat = 0 2581.165Smatt doingcompattests = 0 2591.165Smatt ignoredkeywords["compatdir"] = 1 2601.165Smatt ignoredkeywords["compatfile"] = 1 2611.165Smatt ignoredkeywords["compattestdir"] = 1 2621.165Smatt ignoredkeywords["compattestfile"] = 1 2631.170Smatt ignoredkeywords["compatx11dir"] = 1 2641.170Smatt ignoredkeywords["compatx11file"] = 1 2651.52Slukem for (vi in needvars) { 2661.52Slukem nv = needvars[vi] 2671.52Slukem kw = tolower(nv) 2681.52Slukem sub(/^mk/, "", kw) 2691.143Snakayama sub(/^have_/, "", kw) 2701.148Smatt sub(/^target_endianness/, "endian", kw) 2711.167Smatt if (nv != "HAVE_GCC" && nv != "HAVE_GDB" && ENVIRON[nv] != "no" && nv != "COMPATARCHDIRS" && nv != "KMODARCHDIRS") { 2721.165Smatt wanted[kw] = 1 2731.167Smatt } 2741.166Smatt } 2751.166Smatt 2761.167Smatt if ("compat" in wanted) { 2771.166Smatt doingcompat = 1; 2781.166Smatt split("'"${COMPATARCHDIRS}"'", compatarchdirs, ","); 2791.166Smatt compatdirkeywords["compatdir"] = 1 2801.166Smatt compatfilekeywords["compatfile"] = 1 2811.166Smatt 2821.166Smatt if (wanted["compattests"]) { 2831.165Smatt doingcompattests = 1; 2841.165Smatt compatdirkeywords["compattestdir"] = 1 2851.165Smatt compatfilekeywords["compattestfile"] = 1 2861.166Smatt } 2871.170Smatt if (wanted["compatx11"]) { 2881.170Smatt doingcompatx11 = 1; 2891.170Smatt compatdirkeywords["compatx11dir"] = 1 2901.170Smatt compatfilekeywords["compatx11file"] = 1 2911.170Smatt } 2921.166Smatt } 2931.166Smatt 2941.167Smatt if (("kmod" in wanted) && ("compatmodules" in wanted)) { 2951.166Smatt split("'"${KMODARCHDIRS}"'", kmodarchdirs, ","); 2961.166Smatt kmodpat = "./stand/" ENVIRON["MACHINE"] 2971.166Smatt l_kmodpat = length(kmodpat) 2981.52Slukem } 2991.52Slukem 3001.52Slukem if ("'"${TOOLCHAIN_MISSING}"'" != "yes") { 3011.90Sdyoung if ("binutils" in wanted) 3021.90Sdyoung wanted["binutils=" "'"${HAVE_BINUTILS}"'"] = 1 3031.90Sdyoung if ("gcc" in wanted) 3041.90Sdyoung wanted["gcc=" "'"${HAVE_GCC}"'"] = 1 3051.90Sdyoung if ("gdb" in wanted) 3061.90Sdyoung wanted["gdb=" "'"${HAVE_GDB}"'"] = 1 3071.9Slukem } 3081.183Schristos if ("openssl" in wanted) { 3091.183Schristos wanted["openssl=" "'"${HAVE_OPENSSL}"'"] = 1 3101.183Schristos } 3111.178Smrg if ("xorg_server_ver" in wanted) { 3121.178Smrg wanted["xorg_server_ver=" "'"${HAVE_XORG_SERVER_VER}"'"] = 1 3131.177Smrg } 3141.185Smrg if ("mesa_ver" in wanted) { 3151.185Smrg wanted["mesa_ver=" "'"${HAVE_MESA_VER}"'"] = 1 3161.185Smrg } 3171.52Slukem if (("man" in wanted) && ("catpages" in wanted)) 3181.52Slukem wanted[".cat"] = 1 3191.52Slukem if (("man" in wanted) && ("manpages" in wanted)) 3201.52Slukem wanted[".man"] = 1 3211.148Smatt if ("endian" in wanted) 3221.148Smatt wanted["endian=" "'"${TARGET_ENDIANNESS}"'"] = 1 3231.162Smrg if ("machine" in wanted) 3241.162Smrg wanted["machine=" "'"${MACHINE}"'"] = 1 3251.162Smrg if ("machine_arch" in wanted) 3261.162Smrg wanted["machine_arch=" "'"${MACHINE_ARCH}"'"] = 1 3271.162Smrg if ("machine_cpu" in wanted) 3281.162Smrg wanted["machine_cpu=" "'"${MACHINE_CPU}"'"] = 1 3291.9Slukem } 3301.9Slukem 3311.9Slukem /^#/ { 3321.9Slukem next; 3331.9Slukem } 3341.9Slukem 3351.127Smatt /^-/ { 3361.127Smatt notwanted[substr($1, 2)] = 1; 3371.127Smatt delete list [substr($1, 2)]; 3381.127Smatt next; 3391.127Smatt } 3401.127Smatt 3411.127Smatt 3421.9Slukem NF > 2 && $3 != "-" { 3431.127Smatt if (notwanted[$1] != "") 3441.127Smatt next; 3451.9Slukem split($3, keywords, ",") 3461.9Slukem show = 1 3471.52Slukem haveobs = 0 3481.167Smatt iscompatfile = 0 3491.165Smatt havekmod = 0 3501.165Smatt iscompatdir = 0 3511.9Slukem for (ki in keywords) { 3521.9Slukem kw = keywords[ki] 3531.22Slukem if (("manz" in wanted) && 3541.22Slukem (kw == ".cat" || kw == ".man")) 3551.22Slukem $1 = $1 ".gz" 3561.134Sjoerg if (substr(kw, 1, 1) == "!") { 3571.134Sjoerg kw = substr(kw, 2) 3581.59Sjmmv if (kw in wanted) 3591.59Sjmmv show = 0 3601.165Smatt } else if (kw in compatdirkeywords) { 3611.165Smatt iscompatdir = 1 3621.165Smatt } else if (kw in compatfilekeywords) { 3631.167Smatt iscompatfile = 1 3641.172Smatt } else if (kw == "nocompatmodules") { 3651.172Smatt havekmod = -1 3661.165Smatt } else if (kw in ignoredkeywords) { 3671.165Smatt # ignore 3681.167Smatt } else if (! (kw in wanted)) { 3691.167Smatt show = 0 3701.172Smatt } else if (kw == "kmod" && havekmod == 0) { 3711.167Smatt havekmod = 1 3721.59Sjmmv } 3731.52Slukem if (kw == "obsolete") 3741.52Slukem haveobs = 1 3751.9Slukem } 3761.184Snakayama if (iscompatdir) { 3771.184Snakayama for (d in cpaths) { 3781.184Snakayama if (cpaths[d] == $1 "/") 3791.184Snakayama next 3801.184Snakayama } 3811.184Snakayama cpaths[ncpaths++] = $1 "/" 3821.184Snakayama } 3831.52Slukem if (obsolete && ! haveobs) 3841.52Slukem next 3851.165Smatt if (!show) 3861.165Smatt next 3871.165Smatt 3881.165Smatt list[$1] = $0 3891.172Smatt if (havekmod > 0 && substr($1,1,l_kmodpat) == kmodpat) { 3901.165Smatt for (d in kmodarchdirs) { 3911.165Smatt xd = "./stand/" kmodarchdirs[d] 3921.165Smatt xfile = xd substr($1, l_kmodpat+1) 3931.165Smatt tmp = xd substr($0, l_kmodpat+1) 3941.165Smatt list[xfile] = tmp; 3951.165Smatt } 3961.165Smatt next 3971.165Smatt } 3981.165Smatt 3991.167Smatt if (!doingcompat || !(iscompatfile || iscompatdir)) 4001.165Smatt next 4011.165Smatt 4021.167Smatt if (iscompatfile) { 4031.165Smatt emitcompat[$1] = 1; 4041.168Smatt next 4051.168Smatt } 4061.165Smatt for (d in compatarchdirs) { 4071.165Smatt tmp = $0 4081.165Smatt xfile = $1 "/" compatarchdirs[d] 4091.165Smatt tmp = xfile substr(tmp, length($1) + 1) 4101.165Smatt if (xfile in notwanted) 4111.165Smatt continue; 4121.165Smatt sub("compatdir","compat",tmp); 4131.165Smatt sub("compattestdir","compat",tmp); 4141.165Smatt list[xfile] = tmp 4151.165Smatt } 4161.9Slukem next 4171.9Slukem } 4181.9Slukem 4191.9Slukem { 4201.165Smatt if ($1 in notwanted) 4211.127Smatt next; 4221.9Slukem if (! obsolete) 4231.127Smatt list[$1] = $0 4241.127Smatt } 4251.127Smatt 4261.127Smatt END { 4271.127Smatt for (i in list) { 4281.127Smatt print list[i] 4291.165Smatt if (! (i in emitcompat)) 4301.165Smatt continue; 4311.165Smatt l_i = length(i) 4321.165Smatt l = 0 4331.165Smatt for (j in cpaths) { 4341.165Smatt lx = length(cpaths[j]) 4351.165Smatt if (lx >= l_i || cpaths[j] != substr(i, 1, lx)) { 4361.165Smatt continue; 4371.165Smatt } 4381.165Smatt if (lx > l) { 4391.165Smatt l = lx; 4401.165Smatt cpath = cpaths[j]; 4411.165Smatt } 4421.165Smatt } 4431.165Smatt for (d in compatarchdirs) { 4441.165Smatt tmp = list[i] 4451.165Smatt extrapath = compatarchdirs[d] "/" 4461.165Smatt xfile = cpath extrapath substr(i, l + 1) 4471.165Smatt if (xfile in notwanted) 4481.165Smatt continue; 4491.165Smatt sub("compatfile","compat",tmp); 4501.165Smatt sub("compattestfile","compat",tmp); 4511.165Smatt tmp = xfile substr(tmp, l_i + 1) 4521.165Smatt print tmp; 4531.165Smatt } 4541.127Smatt } 4551.9Slukem }' 4561.9Slukem 4571.1Sdyoung} 4581.1Sdyoung 4591.1Sdyoung# 4601.1Sdyoung# list_set_lists setname 4611.1Sdyoung# 4621.1Sdyoung# Print to stdout a list of files, one filename per line, which 4631.1Sdyoung# concatenate to create the packing list for setname. E.g., 4641.1Sdyoung# 4651.1Sdyoung# .../lists/base/mi 4661.1Sdyoung# .../lists/base/rescue.mi 4671.1Sdyoung# .../lists/base/md.i386 4681.9Slukem# [...] 4691.1Sdyoung# 4701.9Slukem# For a given setname $set, the following files may be selected from 4711.9Slukem# .../list/$set: 4721.9Slukem# mi 4731.92Suebayasi# mi.ext.* 4741.11Slukem# ad.${MACHINE_ARCH} 4751.11Slukem# (or) ad.${MACHINE_CPU} 4761.11Slukem# ad.${MACHINE_CPU}.shl 4771.11Slukem# md.${MACHINE}.${MACHINE_ARCH} 4781.11Slukem# (or) md.${MACHINE} 4791.9Slukem# stl.mi 4801.92Suebayasi# stl.${stlib} 4811.9Slukem# shl.mi 4821.92Suebayasi# shl.mi.ext.* 4831.92Suebayasi# shl.${shlib} 4841.92Suebayasi# shl.${shlib}.ext.* 4851.77Stsutsui# module.mi if ${module} != no 4861.77Stsutsui# module.${MACHINE} if ${module} != no 4871.77Stsutsui# module.ad.${MACHINE_ARCH} if ${module} != no 4881.77Stsutsui# (or) module.ad.${MACHINE_CPU} if ${module} != no 4891.9Slukem# rescue.shl 4901.11Slukem# rescue.${MACHINE} 4911.11Slukem# rescue.ad.${MACHINE_ARCH} 4921.11Slukem# (or) rescue.ad.${MACHINE_CPU} 4931.11Slukem# rescue.ad.${MACHINE_CPU}.shl 4941.1Sdyoung# 4951.9Slukem# Environment: 4961.1Sdyoung# shlib 4971.1Sdyoung# stlib 4981.1Sdyoung# 4991.8Slukemlist_set_lists() 5001.8Slukem{ 5011.1Sdyoung setname=$1 5021.1Sdyoung 5031.111Suebayasi list_set_lists_mi $setname 5041.113Suebayasi list_set_lists_ad $setname 5051.111Suebayasi list_set_lists_md $setname 5061.111Suebayasi list_set_lists_stl $setname 5071.113Suebayasi list_set_lists_shl $setname 5081.113Suebayasi list_set_lists_module $setname 5091.111Suebayasi list_set_lists_rescue $setname 5101.117Suebayasi return 0 5111.111Suebayasi} 5121.110Suebayasi 5131.111Suebayasilist_set_lists_mi() 5141.111Suebayasi{ 5151.111Suebayasi setdir=$setsdir/lists/$1 5161.113Suebayasi # always exist! 5171.9Slukem echo $setdir/mi 5181.111Suebayasi} 5191.110Suebayasi 5201.111Suebayasilist_set_lists_ad() 5211.111Suebayasi{ 5221.111Suebayasi setdir=$setsdir/lists/$1 5231.113Suebayasi [ "${MACHINE}" != "${MACHINE_ARCH}" ] && \ 5241.113Suebayasi list_set_lists_common_ad $1 5251.111Suebayasi} 5261.110Suebayasi 5271.111Suebayasilist_set_lists_md() 5281.111Suebayasi{ 5291.111Suebayasi setdir=$setsdir/lists/$1 5301.110Suebayasi echo_if_exist $setdir/md.${MACHINE}.${MACHINE_ARCH} || \ 5311.110Suebayasi echo_if_exist $setdir/md.${MACHINE} 5321.111Suebayasi} 5331.110Suebayasi 5341.111Suebayasilist_set_lists_stl() 5351.111Suebayasi{ 5361.111Suebayasi setdir=$setsdir/lists/$1 5371.110Suebayasi echo_if_exist $setdir/stl.mi 5381.110Suebayasi echo_if_exist $setdir/stl.${stlib} 5391.111Suebayasi} 5401.110Suebayasi 5411.111Suebayasilist_set_lists_shl() 5421.111Suebayasi{ 5431.111Suebayasi setdir=$setsdir/lists/$1 5441.113Suebayasi [ "$shlib" != "no" ] || return 5451.112Suebayasi echo_if_exist $setdir/shl.mi 5461.112Suebayasi echo_if_exist $setdir/shl.${shlib} 5471.111Suebayasi} 5481.110Suebayasi 5491.111Suebayasilist_set_lists_module() 5501.111Suebayasi{ 5511.111Suebayasi setdir=$setsdir/lists/$1 5521.113Suebayasi [ "$module" != "no" ] || return 5531.112Suebayasi echo_if_exist $setdir/module.mi 5541.112Suebayasi echo_if_exist $setdir/module.${MACHINE} 5551.113Suebayasi # XXX module never has .shl 5561.113Suebayasi [ "${MACHINE}" != "${MACHINE_ARCH}" ] && \ 5571.113Suebayasi list_set_lists_common_ad $1 module 5581.111Suebayasi} 5591.1Sdyoung 5601.111Suebayasilist_set_lists_rescue() 5611.111Suebayasi{ 5621.111Suebayasi setdir=$setsdir/lists/$1 5631.110Suebayasi echo_if_exist $setdir/rescue.mi 5641.110Suebayasi echo_if_exist $setdir/rescue.${MACHINE} 5651.113Suebayasi [ "${MACHINE}" != "${MACHINE_ARCH}" ] && \ 5661.113Suebayasi list_set_lists_common_ad $1 rescue 5671.111Suebayasi} 5681.111Suebayasi 5691.113Suebayasilist_set_lists_common_ad() 5701.111Suebayasi{ 5711.113Suebayasi setdir=$setsdir/lists/$1; _prefix=$2 5721.113Suebayasi 5731.113Suebayasi [ -n "$_prefix" ] && prefix="$_prefix". 5741.113Suebayasi 5751.113Suebayasi # Prefer a <prefix>.ad.${MACHINE_ARCH} over a 5761.113Suebayasi # <prefix>.ad.${MACHINE_CPU}, since the arch- 5771.112Suebayasi # specific one will be more specific than the 5781.112Suebayasi # cpu-specific one. 5791.113Suebayasi echo_if_exist $setdir/${prefix}ad.${MACHINE_ARCH} || \ 5801.113Suebayasi echo_if_exist $setdir/${prefix}ad.${MACHINE_CPU} 5811.113Suebayasi [ "$shlib" != "no" ] && \ 5821.113Suebayasi echo_if_exist $setdir/${prefix}ad.${MACHINE_CPU}.shl 5831.5Sdyoung} 5841.5Sdyoung 5851.110Suebayasiecho_if_exist() 5861.110Suebayasi{ 5871.110Suebayasi [ -f $1 ] && echo $1 5881.110Suebayasi return $? 5891.110Suebayasi} 5901.110Suebayasi 5911.110Suebayasiecho_if_exist_foreach() 5921.110Suebayasi{ 5931.110Suebayasi local _list=$1; shift 5941.110Suebayasi for _suffix in $@; do 5951.110Suebayasi echo_if_exist ${_list}.${_suffix} 5961.110Suebayasi done 5971.110Suebayasi} 5981.110Suebayasi 5991.116Suebayasiprint_set_lists() 6001.116Suebayasi{ 6011.116Suebayasi for setname; do 6021.136Schristos list=$(list_set_lists $setname) 6031.116Suebayasi for l in $list; do 6041.116Suebayasi echo $l 6051.116Suebayasi if $verbose; then 6061.116Suebayasi echo >&2 "DEBUG: list_set_files: $l" 6071.116Suebayasi fi 6081.116Suebayasi done 6091.118Suebayasi done | ${XARGS} ${SED} ${SUBST} 6101.116Suebayasi} 6111.116Suebayasi 6121.9Slukem# arch_to_cpu mach 6131.9Slukem# 6141.11Slukem# Print the ${MACHINE_CPU} for ${MACHINE_ARCH}=mach, 6151.9Slukem# as determined by <bsd.own.mk>. 6161.9Slukem# 6171.8Slukemarch_to_cpu() 6181.8Slukem{ 6191.182Suwe MACHINE_ARCH=${1} MAKEFLAGS= \ 6201.182Suwe ${MAKE} -m ${NETBSDSRCDIR}/share/mk \ 6211.182Suwe -f ${NETBSDSRCDIR}/share/mk/bsd.own.mk \ 6221.182Suwe -V '${MACHINE_CPU}' 6231.1Sdyoung} 6241.46Sapb 6251.46Sapb# arch_to_endian mach 6261.46Sapb# 6271.46Sapb# Print the ${TARGET_ENDIANNESS} for ${MACHINE_ARCH}=mach, 6281.46Sapb# as determined by <bsd.endian.mk>. 6291.46Sapb# 6301.46Sapbarch_to_endian() 6311.46Sapb{ 6321.182Suwe MACHINE_ARCH=${1} MAKEFLAGS= \ 6331.182Suwe ${MAKE} -m ${NETBSDSRCDIR}/share/mk \ 6341.182Suwe -f ${NETBSDSRCDIR}/share/mk/bsd.endian.mk \ 6351.182Suwe -V '${TARGET_ENDIANNESS}' 6361.46Sapb} 6371.117Suebayasi 6381.117Suebayasi##### 6391.117Suebayasi 6401.117Suebayasi# print_mkvars 6411.117Suebayasiprint_mkvars() 6421.117Suebayasi{ 6431.117Suebayasi for v in $MKVARS; do 6441.117Suebayasi eval echo $v=\$$v 6451.117Suebayasi done 6461.117Suebayasi} 6471.117Suebayasi 6481.117Suebayasi# print_set_lists_{base,x,ext} 6491.117Suebayasi# list_set_lists_{base,x,ext} 6501.117Suebayasi# list_set_files_{base,x,ext} 6511.117Suebayasifor func in print_set_lists list_set_lists list_set_files; do 6521.117Suebayasi for x in base x ext; do 6531.117Suebayasi if [ $x = base ]; then 6541.117Suebayasi list=nlists 6551.117Suebayasi else 6561.117Suebayasi list=${x}lists 6571.117Suebayasi fi 6581.117Suebayasi eval ${func}_${x} \(\) \{ $func \$$list \; \} 6591.117Suebayasi done 6601.117Suebayasidone 661