diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-24 14:07:12 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-24 14:07:12 +0000 |
commit | e17a3c739b4e845a3e06999bf0063591dceba69e (patch) | |
tree | d9a74ecdc5ef3e420a2d93798b8f2259b71a60b4 /sys/arch | |
parent | 3071e7e039878d825b0cf79d90624998b4f51b33 (diff) |
kernel is 'bsd'
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hp300/conf/Makefile.hp300 | 2 | ||||
-rw-r--r-- | sys/arch/hp300/stand/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/hp300/stand/boot.c | 4 | ||||
-rw-r--r-- | sys/arch/hp300/stand/netboot.c | 2 | ||||
-rw-r--r-- | sys/arch/hp300/stand/pboot.c | 2 | ||||
-rw-r--r-- | sys/arch/hp300/stand/sys_inst.c | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/hp300/conf/Makefile.hp300 b/sys/arch/hp300/conf/Makefile.hp300 index f08ab797d90..60e1d4ad7b6 100644 --- a/sys/arch/hp300/conf/Makefile.hp300 +++ b/sys/arch/hp300/conf/Makefile.hp300 @@ -127,7 +127,7 @@ vers.o: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP} clean:: - rm -f eddep *bsd netbsd.gdb tags *.[io] [a-z]*.s \ + rm -f eddep *bsd bsd.gdb tags *.[io] [a-z]*.s \ [Ee]rrs linterrs makelinks genassym genassym.o assym.h lint: diff --git a/sys/arch/hp300/stand/Makefile b/sys/arch/hp300/stand/Makefile index 1e037c3dbab..ffb7b8b9c13 100644 --- a/sys/arch/hp300/stand/Makefile +++ b/sys/arch/hp300/stand/Makefile @@ -149,14 +149,14 @@ clean:: rm -f libdrive.a mkboot dboot dcopy installboot *.lif install: mkboot installboot ${ALL} - ./mkboot pboot netbsdboot.lif + ./mkboot pboot bsdboot.lif ./mkboot netboot netboot.lif ./mkboot sys_inst sys_inst.lif ./mkboot dboot diskboot.lif ./mkboot tboot tcopy tapeboot.lif install -c -o ${BINOWN} -g ${BINGRP} -m 555 installboot \ ${DESTDIR}/usr/mdec - install -c -o ${BINOWN} -g ${BINGRP} -m 444 netbsdboot.lif \ + install -c -o ${BINOWN} -g ${BINGRP} -m 444 bsdboot.lif \ ${DESTDIR}/usr/mdec/rdboot rm -f ${DESTDIR}/usr/mdec/bootrd ln ${DESTDIR}/usr/mdec/rdboot ${DESTDIR}/usr/mdec/bootrd diff --git a/sys/arch/hp300/stand/boot.c b/sys/arch/hp300/stand/boot.c index 7ddb6efb8fe..c35b50771d7 100644 --- a/sys/arch/hp300/stand/boot.c +++ b/sys/arch/hp300/stand/boot.c @@ -64,7 +64,7 @@ main() if ((howto & RB_ASKNAME) == 0) { type = (bootdev >> B_TYPESHIFT) & B_TYPEMASK; if ((unsigned)type < ndevs && devsw[type].dv_name) - strcpy(line, "/netbsd"); + strcpy(line, "/bsd"); else howto |= RB_SINGLE|RB_ASKNAME; } @@ -74,7 +74,7 @@ main() printf(": "); gets(line); if (line[0] == 0) { - strcpy(line, "/netbsd"); + strcpy(line, "/bsd"); printf(": %s\n", line); } } else diff --git a/sys/arch/hp300/stand/netboot.c b/sys/arch/hp300/stand/netboot.c index 34e9aee755b..0d973073312 100644 --- a/sys/arch/hp300/stand/netboot.c +++ b/sys/arch/hp300/stand/netboot.c @@ -56,7 +56,7 @@ extern int cons_scode; char *name; char *names[] = { - "netbsd", "onetbsd", "netbsd.old", + "bsd", "obsd", "bsd.old", }; #define NUMNAMES (sizeof(names)/sizeof(char *)) diff --git a/sys/arch/hp300/stand/pboot.c b/sys/arch/hp300/stand/pboot.c index 34407c14bef..f3e251a6bd6 100644 --- a/sys/arch/hp300/stand/pboot.c +++ b/sys/arch/hp300/stand/pboot.c @@ -56,7 +56,7 @@ extern int cons_scode; char *name; char *names[] = { - "/netbsd", "/onetbsd", "/netbsd.old", + "/bsd", "/obsd", "/bsd.old", }; #define NUMNAMES (sizeof(names)/sizeof(char *)) diff --git a/sys/arch/hp300/stand/sys_inst.c b/sys/arch/hp300/stand/sys_inst.c index bd98f8dee67..d1ec6a0f3f0 100644 --- a/sys/arch/hp300/stand/sys_inst.c +++ b/sys/arch/hp300/stand/sys_inst.c @@ -70,7 +70,7 @@ extern char *lowram; extern int noconsole; extern int cons_scode; -char *kernel_name = "/netbsd"; +char *kernel_name = "/bsd"; void dsklabel __P((void)); void miniroot __P((void)); |