]>
git.saurik.com Git - apple/xnu.git/blob - SETUP/config/doconf
3 ######################################################################
5 # 1-Dec-87 Michael Young (mwyoung) at Carnegie-Mellon University
6 # Added "-verbose" switch, so this script produces no output
9 # 10-Oct-87 Mike Accetta (mja) at Carnegie-Mellon University
10 # Flushed cmu_*.h and spin_locks.h
13 # 6-Apr-87 Avadis Tevanian (avie) at Carnegie-Mellon University
14 # Use MASTER.local and MASTER.<machine>.local for generation of
15 # configuration files in addition to MASTER and MASTER.<machine>.
17 # 25-Mar-87 Mike Accetta (mja) at Carnegie-Mellon University
18 # Removed use of obsolete wb_*.h files when building the feature
19 # list; modified to save the previous configuration file and
20 # display the differences between it and the new file.
23 # 25-Mar-87 Avadis Tevanian (avie) at Carnegie-Mellon University
24 # If there is no /etc/machine just print out a message telling
25 # user to use the -cpu option. I thought this script was supposed
26 # to work even without a /etc/machine, but it doesn't... and this
27 # is the easiest way out.
29 # 13-Mar-87 Mike Accetta (mja) at Carnegie-Mellon University
30 # Added "romp_fpa.h" file to extra features for the RT.
33 # 11-Mar-87 Mike Accetta (mja) at Carnegie-Mellon University
34 # Updated to maintain the appropriate configuration features file
35 # in the "machine" directory whenever the corresponding
36 # configuration is generated. This replaces the old mechanism of
37 # storing this directly in the <sys/features.h> file since it was
38 # machine dependent and also precluded building programs for more
39 # than one configuration from the same set of sources.
42 # 21-Feb-87 Mike Accetta (mja) at Carnegie-Mellon University
43 # Fixed to require wired-in cpu type names for only those
44 # machines where the kernel name differs from that provided by
45 # /etc/machine (i.e. IBMRT => ca and SUN => sun3); updated to
46 # permit configuration descriptions in both machine indepedent
47 # and dependent master configuration files so that attributes can
48 # be grouped accordingly.
51 # 17-Jan-87 Mike Accetta (mja) at Carnegie-Mellon University
52 # Updated to work from any directory at the same level as
53 # "conf"; generate configuration from both MASTER and
54 # MASTER.<machine-type> files; added -cpu switch.
57 # 18-Aug-86 Mike Accetta (mja) at Carnegie-Mellon University
58 # Added -make switch and changed meaning of -config; upgraded to
59 # allow multiple attributes per configuration and to define
60 # configurations in terms of these attributes within MASTER.
62 # 14-Apr-83 Mike Accetta (mja) at Carnegie-Mellon University
63 # Added -config switch to only run /etc/config without
64 # "make depend" and "make".
66 ######################################################################
73 set CONFIG_DIR
=$OBJROOT/SETUP
/config
83 if ("$argv[1]" =~
-*) then
91 echo "${prog}: missing argument to ${argv[1]}"
94 set MACHINE
="$argv[2]"
99 echo "${prog}: missing argument to ${argv[1]}"
102 set SOC_CONFIG
="$argv[2]"
107 echo "${prog}: missing argument to ${argv[1]}"
110 set OBJDIR
="$argv[2]"
115 echo "${prog}: missing argument to ${argv[1]}"
118 set MASTER_CONF_DIR
="$argv[2]"
123 echo "${prog}: missing argument to ${argv[1]}"
126 set SOURCEDIR
="$argv[2]"
137 echo "${prog}: ${argv[1]}: unknown switch"
147 if ($#argv == 0) set argv
=(GENERIC
)
149 if (! $?MACHINE
) then
150 echo "${prog}: MACHINE not set"
154 set cpu
=`echo $MACHINE | tr A-Z a-z`
155 set ID
=`echo $MACHINE | tr a-z A-Z`
156 set MASTER_DIR
=${MASTER_CONF_DIR}
157 set MASTER
= ${MASTER_DIR}/MASTER
158 set MASTER_CPU
=${MASTER}.
${cpu}
159 set MASTER_CPU_PER_SOC
=${MASTER}.
${cpu}.
${SOC_CONFIG}
160 if (-f $MASTER_CPU_PER_SOC) set MASTER_CPU
= ${MASTER_CPU_PER_SOC}
163 set SYSID
=${SYS}_
${ID}
164 set SYSCONF
=$OBJDIR/config.
$SYSID
166 if ($?beverbose
) then
167 echo "[ generating $SYSID from $MASTER_DIR/MASTER{,.$cpu}{,.local} ]"
171 cat $MASTER $MASTER_CPU - \
172 $MASTER $MASTER_CPU \
182 -e 's;^\([^#]*\).*#[ ]*<\(.*\)>[ ]*$;\2#\1;' \
184 -e 's;\([^#]*\).*;#\1;' \
188 -e 's;^\!\(.*\);\1#\!;' \
195 -e "s;^# *\([^ ]*\)[ ]*=[ ]*\[\(.*\)\].*;\1#\2;p" \
198 part == 0 && $1 != "" {\
202 part == 0 && $1 == "" {\
205 c[++na]=substr($i,1,1);\
214 nx=split(m[s],x," ");\
215 for (j=nx;j>0;j--) {\
229 for (i=1;i<=n;i++) {\
230 if (f[x[i]] == "+") {\
234 if (NF > 2 && ok == 0 || NF <= 2 && ok != 0) {\
242 if (-z $SYSCONF.new
) then
243 echo "${prog}: ${$SYSID}: no such configuration in $MASTER_DIR/MASTER{,.$cpu}"
247 # These paths are used by config.
249 # "builddir" is the name of the directory where kernel binaries
250 # are put. It is a single path element, never absolute, and is
251 # always relative to "objectdir". "builddir" is used by config
252 # solely to determine where to put files created by "config" (e.g.
253 # the created Makefile and *.h's.)
255 # "objectdir" is the name of the directory which will hold "builddir".
256 # It is a path; if relative, it is relative to the current directory
257 # where config is run. It's sole use is to be prepended to "builddir"
258 # to indicate where config-created files are to be placed (see above).
260 # "sourcedir" is the location of the sources used to build the kernel.
261 # It is a path; if relative, it is relative to the directory specified
262 # by the concatenation of "objectdir" and "builddir" (i.e. where the
263 # kernel binaries are put).
265 echo 'builddir "."' >> $SYSCONF.new
266 echo 'objectdir "'$OBJDIR'"' >> $SYSCONF.new
267 set SRCDIR
=`dirname $SOURCE`
268 echo 'sourcedir "'$SRCROOT'"' >> $SYSCONF.new
269 if (-f $SYSCONF) then
270 diff $SYSCONF $SYSCONF.new
272 mv $SYSCONF $SYSCONF.old
275 mv $SYSCONF.new
$SYSCONF
277 if ($?beverbose
) then
278 echo "[ configuring $SYSID ]"
281 $CONFIG_DIR/config
-c $SOURCEDIR -p $SYSCONF
283 $CONFIG_DIR/config
-c $SOURCEDIR $SYSCONF