diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-29 00:03:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-29 00:03:14 +0000 |
commit | c1f29978c6a9c09ae0accd6243fba6843793fc19 (patch) | |
tree | bdd786a8f16ee123595bd836f30f9011faab2caf /sys/arch/hp300/stand | |
parent | 346f6a0569d7724812f218fac3414d8df48cc87e (diff) |
remove support for many alternative kernel choices -- only try /bsd and
not the other stupid names. that feature was retarded. tested on a few
architectures by a few people
Diffstat (limited to 'sys/arch/hp300/stand')
-rw-r--r-- | sys/arch/hp300/stand/cdboot/cdboot.c | 4 | ||||
-rw-r--r-- | sys/arch/hp300/stand/uboot/uboot.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hp300/stand/cdboot/cdboot.c b/sys/arch/hp300/stand/cdboot/cdboot.c index 1f4ac02d3a5..928e81758ae 100644 --- a/sys/arch/hp300/stand/cdboot/cdboot.c +++ b/sys/arch/hp300/stand/cdboot/cdboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cdboot.c,v 1.6 2005/04/22 00:42:14 miod Exp $ */ +/* $OpenBSD: cdboot.c,v 1.7 2007/05/29 00:03:09 deraadt Exp $ */ /* $NetBSD: uboot.c,v 1.3 1997/04/27 21:17:13 thorpej Exp $ */ /*- @@ -63,7 +63,7 @@ char *names[] = { #ifdef OSREV OSREV "/hp300/bsd.rd", #endif - "bsd.rd", "bsd", "obsd", "bsd.old" + "bsd.rd", "bsd", }; #define NUMNAMES (sizeof(names) / sizeof(char *)) diff --git a/sys/arch/hp300/stand/uboot/uboot.c b/sys/arch/hp300/stand/uboot/uboot.c index 59cc5570800..6ec4ee78759 100644 --- a/sys/arch/hp300/stand/uboot/uboot.c +++ b/sys/arch/hp300/stand/uboot/uboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uboot.c,v 1.4 2005/04/22 00:42:16 miod Exp $ */ +/* $OpenBSD: uboot.c,v 1.5 2007/05/29 00:03:09 deraadt Exp $ */ /* $NetBSD: uboot.c,v 1.3 1997/04/27 21:17:13 thorpej Exp $ */ /*- @@ -60,7 +60,7 @@ extern const char version[]; */ char *name; char *names[] = { - "bsd", "bsd.gz", "obsd", "obsd.gz", "bsd.old", "bsd.old.gz" + "bsd" }; #define NUMNAMES (sizeof(names) / sizeof(char *)) |