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
This commit is contained in:
Ben Gras 2005-08-08 14:34:10 +00:00
parent 1569a60360
commit bfb7608412
4 changed files with 20 additions and 8 deletions

View file

@ -1,6 +1,4 @@
DON'T PANIC.
MINIX 3 is still under development and may contain bugs and other 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 imperfections. If you would like to help develop MINIX 3 further into a
rock solid, reliable operating system, please go to the official Website: 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 www.minix3.org
to see how you can help. That page also contains additional MINIX 3 to see how you can help. That page also contains additional MINIX 3
software, documentation, and information about the MINIX community. software, documentation, and information about the MINIX community. If
If you find a bug, please use the "Report a bug" link on that page. 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.

View file

@ -36,9 +36,15 @@
755 root operator /usr/local/info 755 root operator /usr/local/info
775 bin operator /usr/local/lib 775 bin operator /usr/local/lib
775 bin operator /usr/local/man 775 bin operator /usr/local/man
755 root operator /usr/local/man/man1 755 bin operator /usr/local/man/man1
755 root operator /usr/local/man/man5 755 bin operator /usr/local/man/man2
755 root operator /usr/local/man/man8 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 775 bin operator /usr/local/src
755 bin operator /usr/man 755 bin operator /usr/man
755 bin operator /usr/man/man1 755 bin operator /usr/man/man1

View file

@ -169,7 +169,7 @@ PUBLIC void main()
PRIVATE void announce(void) PRIVATE void announce(void)
{ {
/* Display the MINIX startup banner. */ /* 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); OS_RELEASE, OS_VERSION);
#if (CHIP == INTEL) #if (CHIP == INTEL)

View file

@ -37,6 +37,8 @@ rm -rf $RELEASEDIR $ISO $IMAGE $ROOTIMAGE $ISOGZ $CDFILES
mkdir -p $CDFILES || exit mkdir -p $CDFILES || exit
mkdir -p $RELEASEDIR mkdir -p $RELEASEDIR
mkfs -b 1440 -B 1024 $RAM || exit mkfs -b 1440 -B 1024 $RAM || exit
echo " * chowning to bin"
chown -R bin /usr/src
echo " * mounting $RAM as $RELEASEDIR" echo " * mounting $RAM as $RELEASEDIR"
mount $RAM $RELEASEDIR || exit mount $RAM $RELEASEDIR || exit
mkdir -m 755 $RELEASEDIR/usr mkdir -m 755 $RELEASEDIR/usr