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:
parent
1569a60360
commit
bfb7608412
4 changed files with 20 additions and 8 deletions
12
etc/motd
12
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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue