From: Ben Gras Date: Mon, 8 Aug 2005 14:34:10 +0000 (+0000) Subject: various small fixes. X-Git-Tag: v3.1.0~400 X-Git-Url: http://zhaoyanbai.com/repos/nsupdate.html?a=commitdiff_plain;h=bfb7608412646e423c40935259ac73757e2ec00a;p=minix.git various small fixes. . motd update (ast) . made /usr/local/man/man* and made them bin-owned (mtree) (to let bin install there) . made copyright notice in kernel 1987-2006 (ast) . added chown -R bin /usr/src so that bin can compile everything --- diff --git a/etc/motd b/etc/motd index d20b5a468..98f190028 100755 --- a/etc/motd +++ b/etc/motd @@ -1,6 +1,4 @@ -DON'T PANIC. - MINIX 3 is still under development and may contain bugs and other imperfections. If you would like to help develop MINIX 3 further into a rock solid, reliable operating system, please go to the official Website: @@ -8,6 +6,12 @@ rock solid, reliable operating system, please go to the official Website: www.minix3.org to see how you can help. That page also contains additional MINIX 3 -software, documentation, and information about the MINIX community. -If you find a bug, please use the "Report a bug" link on that page. +software, documentation, and information about the MINIX community. If +you find a bug, please use the "Report a bug" link on that page. + +For help with MINIX 3 and discussion about it, please subscribe to the +newsgroup: comp.os.minix. + +MINIX 3 supports virtual terminals. Hit ALT+F2, ALT+F3 etc. to +see them. diff --git a/etc/mtree/minix.tree b/etc/mtree/minix.tree index a9b43f31f..540afb4f3 100644 --- a/etc/mtree/minix.tree +++ b/etc/mtree/minix.tree @@ -36,9 +36,15 @@ 755 root operator /usr/local/info 775 bin operator /usr/local/lib 775 bin operator /usr/local/man -755 root operator /usr/local/man/man1 -755 root operator /usr/local/man/man5 -755 root operator /usr/local/man/man8 +755 bin operator /usr/local/man/man1 +755 bin operator /usr/local/man/man2 +755 bin operator /usr/local/man/man3 +755 bin operator /usr/local/man/man4 +755 bin operator /usr/local/man/man5 +755 bin operator /usr/local/man/man6 +755 bin operator /usr/local/man/man7 +755 bin operator /usr/local/man/man8 +755 bin operator /usr/local/man/man9 775 bin operator /usr/local/src 755 bin operator /usr/man 755 bin operator /usr/man/man1 diff --git a/kernel/main.c b/kernel/main.c index f49ed7976..5c6805a1e 100755 --- a/kernel/main.c +++ b/kernel/main.c @@ -169,7 +169,7 @@ PUBLIC void main() PRIVATE void announce(void) { /* Display the MINIX startup banner. */ - kprintf("MINIX %s.%s. Copyright 2001 Prentice-Hall, Inc.\n", + kprintf("MINIX %s.%s. Copyright 1987-2006 Prentice-Hall, Inc.\n", OS_RELEASE, OS_VERSION); #if (CHIP == INTEL) diff --git a/tools/release.sh b/tools/release.sh index f1e8ff788..b6d35b7a8 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -37,6 +37,8 @@ rm -rf $RELEASEDIR $ISO $IMAGE $ROOTIMAGE $ISOGZ $CDFILES mkdir -p $CDFILES || exit mkdir -p $RELEASEDIR mkfs -b 1440 -B 1024 $RAM || exit +echo " * chowning to bin" +chown -R bin /usr/src echo " * mounting $RAM as $RELEASEDIR" mount $RAM $RELEASEDIR || exit mkdir -m 755 $RELEASEDIR/usr