diff options
Diffstat (limited to 'distrib/sparc')
-rw-r--r-- | distrib/sparc/ramdisk/Makefile.inc | 9 | ||||
-rw-r--r-- | distrib/sparc/ramdisk/dot.profile | 8 |
2 files changed, 10 insertions, 7 deletions
diff --git a/distrib/sparc/ramdisk/Makefile.inc b/distrib/sparc/ramdisk/Makefile.inc index 74e35abcfe2..48fa2d08934 100644 --- a/distrib/sparc/ramdisk/Makefile.inc +++ b/distrib/sparc/ramdisk/Makefile.inc @@ -1,9 +1,10 @@ -# $OpenBSD: Makefile.inc,v 1.4 1997/05/21 16:11:20 deraadt Exp $ -# $OpenBSD: Makefile.inc,v 1.4 1997/05/21 16:11:20 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.5 1997/05/24 10:46:21 johns Exp $ +# $OpenBSD: Makefile.inc,v 1.5 1997/05/24 10:46:21 johns Exp $ -IMAGESIZE?= 5120 # 2.5Mb in 512 byte blocks +IMAGESIZE?= 8192 # 4Mb in 512 byte blocks BOOT_INSTALLBOOT?= /usr/mdec/bootxx GZIP?= gzip GZIPFLAGS?= -9v GZIPEXT?= .gz -#MAKEFLOPPY= 1 +MAKEFLOPPY= 1 +RAWLABEL= diff --git a/distrib/sparc/ramdisk/dot.profile b/distrib/sparc/ramdisk/dot.profile index 92177c753dd..ee2561fac6c 100644 --- a/distrib/sparc/ramdisk/dot.profile +++ b/distrib/sparc/ramdisk/dot.profile @@ -1,4 +1,4 @@ -# $OpenBSD: dot.profile,v 1.2 1997/05/15 05:34:20 deraadt Exp $ +# $OpenBSD: dot.profile,v 1.3 1997/05/24 10:46:21 johns Exp $ # $NetBSD: dot.profile,v 1.1 1995/12/18 22:54:43 pk Exp $ # # Copyright (c) 1995 Jason R. Thorpe @@ -50,6 +50,7 @@ EDITORS="vi ed" EDITOR=vi DUMB=ed EDITBIN=/bin +EDITUBIN=/usr/bin if [ "X${DONEPROFILE}" = "X" ]; then DONEPROFILE=YES @@ -97,8 +98,9 @@ if [ "X${DONEPROFILE}" = "X" ]; then fi done fi - if [ "X$_forceloop" != "X" -a ! -x $EDITBIN/$_choice ] - then + if [ "X$_forceloop" != "X" -a \ + ! \( -x $EDITBIN/$_choice -o \ + -x $EDITUBIN/$_choice \) ]; then _forceloop="" fi if [ "X$_forceloop" = "X" ]; then |