NetBSD/sys/arch/atari/conf/makeconf

27 lines
934 B
Bash

#!/bin/sh
# $NetBSD: makeconf,v 1.6 2001/11/20 11:26:10 lukem Exp $
emit_file() {
echo "Generating $1"
echo '#
# $NetBSD: makeconf,v 1.6 2001/11/20 11:26:10 lukem Exp $
#
# This file was automatically created. Changes will be
# lost when running makeconf in this directory.
#
# Created from:' > $1
grep -h '$NetBSD' $2 GENERIC.in | sed -e 's/\$NetBSD/ NetBSD/' >> $1
cpp -undef -P $3 2>/dev/null < $2 |
sed -e '/\$NetBSD:/d' |
awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $1
}
emit_file BOOT FALCON.in "-DINSTALL_KERNEL -DTT030_KERNEL -DFALCON_KERNEL"
emit_file BOOTX FALCON.in \
"-DINSTALL_KERNEL -DINSTALLX_KERNEL -DTT030_KERNEL -DFALCON_KERNEL"
emit_file ATARITT ATARITT.in "-DTT030_KERNEL"
emit_file FALCON FALCON.in "-DFALCON_KERNEL"
emit_file HADES HADES.in "-DHADES_KERNEL"
emit_file MILAN-ISAIDE MILAN.in "-DMILAN_KERNEL -DMILAN_ISAIDE"
emit_file MILAN-PCIIDE MILAN.in "-DMILAN_KERNEL -DMILAN_PCIIDE"