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 ######################################################################
72 if ("`/usr/bin/uname`" == "Rhapsody" ) then
73 set CONFIG_DIR
=/usr
/local
/bin
75 set CONFIG_DIR
=/usr
/bin
85 if ("$argv[1]" =~
-*) then
97 echo "${prog}: missing argument to ${argv[1]}"
100 set MACHINE
="$argv[2]"
105 echo "${prog}: missing argument to ${argv[1]}"
108 set OBJDIR
="$argv[2]"
119 echo "${prog}: ${argv[1]}: unknown switch"
129 if ($#argv == 0) set argv
=(GENERIC
)
131 if (! $?MACHINE
) then
132 if (-d /NextApps
) then
133 set MACHINE
=`hostinfo | awk '/MC680x0/ { printf("m68k") } /MC880x0/ { printf("m88k") }'`
137 if (! $?MACHINE
) then
138 if (-f /etc
/machine
) then
139 set MACHINE
="`/etc/machine`"
141 echo "${prog}: no /etc/machine, specify machine type with -cpu"
142 echo "${prog}: e.g. ${prog} -cpu VAX CONFIGURATION"
153 set FEATURES_EXTRA
="romp_dualcall.h romp_fpa.h"
160 set cpu
=`echo $MACHINE | tr A-Z a-z`
161 set ID
=`echo $MACHINE | tr a-z A-Z`
164 set FEATURES
=..
/h
/features.h
165 set FEATURES_H
=(cs_
*.h mach_
*.h net_
*.h\
166 cputypes.h cpus.h vice.h\
168 set MASTER_DIR
=..
/conf
169 set MASTER
= ${MASTER_DIR}/MASTER
170 set MASTER_CPU
=${MASTER}.
${cpu}
172 set MASTER_LOCAL
= ${MASTER}.
local
173 set MASTER_CPU_LOCAL
= ${MASTER_CPU}.
local
174 if (! -f $MASTER_LOCAL) set MASTER_LOCAL
= ""
175 if (! -f $MASTER_CPU_LOCAL) set MASTER_CPU_LOCAL
= ""
177 if (! -d $OBJDIR) then
178 if ($?beverbose
) then
179 echo "[ creating $OBJDIR ]"
185 set SYSID
=${SYS}_
${ID}
186 set SYSCONF
=$OBJDIR/config.
$SYSID
188 if ($?beverbose
) then
189 echo "[ generating $SYSID from $MASTER_DIR/MASTER{,.$cpu}{,.local} ]"
193 cat $MASTER $MASTER_LOCAL $MASTER_CPU $MASTER_CPU_LOCAL - \
194 $MASTER $MASTER_LOCAL $MASTER_CPU $MASTER_CPU_LOCAL \
204 -e 's;^\([^#]*\).*#[ ]*<\(.*\)>[ ]*$;\2#\1;' \
206 -e 's;\([^#]*\).*;#\1;' \
210 -e 's;^\!\(.*\);\1#\!;' \
217 -e "s;^# *\([^ ]*\)[ ]*=[ ]*\[\(.*\)\].*;\1#\2;p" \
220 part == 0 && $1 != "" {\
224 part == 0 && $1 == "" {\
227 c[++na]=substr($i,1,1);\
236 nx=split(m[s],x," ");\
237 for (j=nx;j>0;j--) {\
251 for (i=1;i<=n;i++) {\
252 if (f[x[i]] == "+") {\
256 if (NF > 2 && ok == 0 || NF <= 2 && ok != 0) {\
264 if (-z $SYSCONF.new
) then
265 echo "${prog}: ${$SYSID}: no such configuration in $MASTER_DIR/MASTER{,.$cpu}"
268 if (! -d $BLDDIR) then
269 if ($?beverbose
) then
270 echo "[ creating $BLDDIR ]"
275 # These paths are used by config.
277 # "builddir" is the name of the directory where kernel binaries
278 # are put. It is a single path element, never absolute, and is
279 # always relative to "objectdir". "builddir" is used by config
280 # solely to determine where to put files created by "config" (e.g.
281 # the created Makefile and *.h's.)
283 # "objectdir" is the name of the directory which will hold "builddir".
284 # It is a path; if relative, it is relative to the current directory
285 # where config is run. It's sole use is to be prepended to "builddir"
286 # to indicate where config-created files are to be placed (see above).
288 # "sourcedir" is the location of the sources used to build the kernel.
289 # It is a path; if relative, it is relative to the directory specified
290 # by the concatenation of "objectdir" and "builddir" (i.e. where the
291 # kernel binaries are put).
293 echo 'builddir "."' >> $SYSCONF.new
294 set OBJRELDIR
=`$RELPATH $OBJROOT $OBJDIR`
295 echo 'objectdir "'$OBJROOT'/'$OBJRELDIR'"' >> $SYSCONF.new
296 set SRCDIR
=`dirname $SOURCE`
297 echo 'sourcedir "'$SRCROOT'"' >> $SYSCONF.new
298 if (-f $SYSCONF) then
299 diff $SYSCONF $SYSCONF.new
301 mv $SYSCONF $SYSCONF.old
304 mv $SYSCONF.new
$SYSCONF
306 if ($?beverbose
) then
307 echo "[ configuring $SYSID ]"
310 $CONFIG_DIR/config
-c $MASTER_DIR -p $SYSCONF
312 $CONFIG_DIR/config
-c $MASTER_DIR $SYSCONF
316 if ($?beverbose
) then
317 echo "[ making $SYSID ]"