2fe8fb192f
There is important information about booting non-ack images in docs/UPDATING. ack/aout-format images can't be built any more, and booting clang/ELF-format ones is a little different. Updating to the new boot monitor is recommended. Changes in this commit: . drop boot monitor -> allowing dropping ack support . facility to copy ELF boot files to /boot so that old boot monitor can still boot fairly easily, see UPDATING . no more ack-format libraries -> single-case libraries . some cleanup of OBJECT_FMT, COMPILER_TYPE, etc cases . drop several ack toolchain commands, but not all support commands (e.g. aal is gone but acksize is not yet). . a few libc files moved to netbsd libc dir . new /bin/date as minix date used code in libc/ . test compile fix . harmonize includes . /usr/lib is no longer special: without ack, /usr/lib plays no kind of special bootstrapping role any more and bootstrapping is done exclusively through packages, so releases depend even less on the state of the machine making them now. . rename nbsd_lib* to lib* . reduce mtree
33 lines
606 B
Bash
Executable file
33 lines
606 B
Bash
Executable file
#! /bin/sh
|
|
|
|
#
|
|
# $NetBSD: tzcode2netbsd,v 1.5 2004/05/27 20:33:31 kleink Exp $
|
|
#
|
|
# Convert an extracted tzcode distribution into the format suitable
|
|
# for importing it into the NetBSD source tree.
|
|
# Last updated for: tzcode2004a.
|
|
#
|
|
|
|
NOIMPORT="Makefile
|
|
date.1 date.1.txt date.c
|
|
gccdiffs
|
|
itca.jpg
|
|
logwtmp.c
|
|
newctime.3.txt
|
|
newstrftime.3 newstrftime.3.txt
|
|
newtzset.3.txt
|
|
time2posix.3.txt
|
|
tzfile.5.txt
|
|
tzselect.8.txt
|
|
usno1988 usno1989 usno1989a usno1995 usno1997 usno1998
|
|
zdump.8.txt
|
|
zic.8.txt"
|
|
|
|
NEWTONORMAL="ctime.3
|
|
tzset.3"
|
|
|
|
rm -f ${NOIMPORT}
|
|
|
|
for f in ${NEWTONORMAL}; do
|
|
mv new${f} ${f};
|
|
done
|