]> Zhao Yanbai Git Server - minix.git/commitdiff
various small fixes.
authorBen Gras <ben@minix3.org>
Mon, 8 Aug 2005 14:34:10 +0000 (14:34 +0000)
committerBen Gras <ben@minix3.org>
Mon, 8 Aug 2005 14:34:10 +0000 (14:34 +0000)
 . 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

etc/motd
etc/mtree/minix.tree
kernel/main.c
tools/release.sh

index d20b5a46823e0e0879e7f0ca0f0409f6358ec6b1..98f1900289de4ab3ebf63324b2eef7628924e5c4 100755 (executable)
--- 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.
 
index a9b43f31ff5789d907426fd3f6a58ae1a575f821..540afb4f36bc0995a60c9a9ba852c09a76e92cfa 100644 (file)
 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
index f49ed7976fa618682f2ecd4b6d1214cd8572c3a5..5c6805a1e8cbcff4cac348b1db108edfa65dd93f 100755 (executable)
@@ -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)
index f1e8ff7888a4390a1288fc0bce120474b4a5d1e5..b6d35b7a8c0c8754dda5f9173f9b9843709d9212 100755 (executable)
@@ -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