diff options
Diffstat (limited to 'distrib/sparc')
-rw-r--r-- | distrib/sparc/install.md | 8 | ||||
-rw-r--r-- | distrib/sparc/miniroot/dot.profile | 8 | ||||
-rw-r--r-- | distrib/sparc/miniroot/list | 2 |
3 files changed, 13 insertions, 5 deletions
diff --git a/distrib/sparc/install.md b/distrib/sparc/install.md index 25ba0ae43a1..16308876ee3 100644 --- a/distrib/sparc/install.md +++ b/distrib/sparc/install.md @@ -89,7 +89,7 @@ md_get_ifdevs() { md_get_partition_range() { # return range of valid partition letters - echo "[a-h]" + echo "[a-p]" } md_installboot() { @@ -156,11 +156,11 @@ pairs are on cylinder boundaries (the number of sector per cylinder is given in the `sectors/cylinder' entry, which is not shown here). Do not change any parameters except the partition layout and the label name. -It's probably also wisest not to touch the `8 partitions:' line, even -in case you have defined less than eight partitions. +It's probably also wisest not to touch the `16 partitions:' line, even +in case you have defined less than sixteen partitions. [Example] -8 partitions: +16 partitions: # size offset fstype [fsize bsize cpg] a: 50176 0 4.2BSD 1024 8192 16 # (Cyl. 0 - 111) b: 64512 50176 swap # (Cyl. 112 - 255) diff --git a/distrib/sparc/miniroot/dot.profile b/distrib/sparc/miniroot/dot.profile index ddcbb3c887c..3c852f21ab6 100644 --- a/distrib/sparc/miniroot/dot.profile +++ b/distrib/sparc/miniroot/dot.profile @@ -32,9 +32,17 @@ PATH=/sbin:/bin:/usr/bin:/usr/sbin:/ export PATH + TERM=sun export TERM +if [ -e /usr/bin/vim ]; then + EDITOR=vim +else + EDITOR=ed +fi +export EDITOR + umask 022 if [ "X${DONEPROFILE}" = "X" ]; then diff --git a/distrib/sparc/miniroot/list b/distrib/sparc/miniroot/list index ca077de3e46..f5641c9d801 100644 --- a/distrib/sparc/miniroot/list +++ b/distrib/sparc/miniroot/list @@ -32,7 +32,7 @@ SYMLINK /tmp var/tmp COPY ${DESTDIR}/dev/MAKEDEV dev/MAKEDEV COPY ${DESTDIR}/dev/MAKEDEV.local dev/MAKEDEV.local SPECIAL cd dev; sh MAKEDEV all -SPECIAL /bin/rm dev/MAKEDEV +#SPECIAL /bin/rm dev/MAKEDEV # we need the contents of /usr/mdec COPYDIR ${DESTDIR}/usr/mdec usr/mdec |