diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-04-20 20:11:49 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1999-04-20 20:11:49 +0000 |
commit | cae638b359ea9cd3afdf55428a62bf1090ac87cc (patch) | |
tree | 7e8ca8376e9491c18b4ffc61ad220858f31559af /sys | |
parent | 48d94df703a2f785d98060ae2cae54b2adcd61a6 (diff) |
fix prev commit blowup:
no ldsym for now
s/sd/dk/ since it's not always a disk, not even scsi (:
bump a version, things changed
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa/stand/boot/conf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/stand/boot/conf.c b/sys/arch/hppa/stand/boot/conf.c index e423fa62101..38453170b16 100644 --- a/sys/arch/hppa/stand/boot/conf.c +++ b/sys/arch/hppa/stand/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.7 1999/04/20 20:05:22 mickey Exp $ */ +/* $OpenBSD: conf.c,v 1.8 1999/04/20 20:11:48 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -38,11 +38,11 @@ #include <lib/libsa/exec.h> #include <dev/cons.h> -const char version[] = "0.04"; +const char version[] = "0.05"; int debug = 1; const struct x_sw execsw[] = { - { "elf", elf_probe, elf_load/*, elf_ldsym */}, + { "elf", elf_probe, elf_load/*, elf_ldsym */ }, /* { "som", som_probe, som_load, som_ldsym }, */ { "" , NULL, NULL }, }; |