diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-13 03:52:13 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-13 03:52:13 +0000 |
commit | fef7a29982c4b5fd2172231cb7deb178a269f86c (patch) | |
tree | 35cdde49d00865139da655813d6194db1bb48e2b /sys/arch | |
parent | c85d9ddd61e9d337a6b9178974262ab0828d7c1b (diff) |
since i blew up prev commit msg, here it is:
upgrade to new coming stand/exec framework
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hppa/stand/boot/conf.c | 8 | ||||
-rw-r--r-- | sys/arch/hppa/stand/libsa/Makefile | 3 | ||||
-rw-r--r-- | sys/arch/hppa/stand/libsa/exec_hppa.c | 3 | ||||
-rw-r--r-- | sys/arch/hppa/stand/libsa/libsa.h | 3 |
4 files changed, 7 insertions, 10 deletions
diff --git a/sys/arch/hppa/stand/boot/conf.c b/sys/arch/hppa/stand/boot/conf.c index c5f089435ed..ea61acb9418 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.2 1998/07/13 03:35:56 mickey Exp $ */ +/* $OpenBSD: conf.c,v 1.3 1998/07/13 03:52:06 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -41,12 +41,12 @@ #include <lib/libsa/exec.h> #include <dev/cons.h> -const char version[] = "0.01"; +const char version[] = "0.02"; int debug; struct x_sw execsw[] = { - { "elf", elf_probe, elf_load }, - { "" , NULL, NULL }, + { "elf", elf_probe, elf_load }, + { "" , NULL, NULL }, }; struct fs_ops file_system[] = { diff --git a/sys/arch/hppa/stand/libsa/Makefile b/sys/arch/hppa/stand/libsa/Makefile index 954fe3e4c5e..4348c81246d 100644 --- a/sys/arch/hppa/stand/libsa/Makefile +++ b/sys/arch/hppa/stand/libsa/Makefile @@ -1,5 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 1998/07/13 03:35:57 mickey Exp $ -# $NOWHERE: Makefile,v 2.1 1998/06/22 19:34:45 mickey Exp $ +# $OpenBSD: Makefile,v 1.3 1998/07/13 03:52:10 mickey Exp $ .include "${.CURDIR}/../Makefile.inc" diff --git a/sys/arch/hppa/stand/libsa/exec_hppa.c b/sys/arch/hppa/stand/libsa/exec_hppa.c index 2f96984051f..b3666c3c954 100644 --- a/sys/arch/hppa/stand/libsa/exec_hppa.c +++ b/sys/arch/hppa/stand/libsa/exec_hppa.c @@ -1,5 +1,4 @@ -/* $OpenBSD: exec_hppa.c,v 1.2 1998/07/13 03:35:59 mickey Exp $ */ -/* $NOWHERE: exec_hppa.c,v 2.2 1998/06/22 19:34:46 mickey Exp $ */ +/* $OpenBSD: exec_hppa.c,v 1.3 1998/07/13 03:52:11 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff diff --git a/sys/arch/hppa/stand/libsa/libsa.h b/sys/arch/hppa/stand/libsa/libsa.h index 3cc05e993c2..008106efb93 100644 --- a/sys/arch/hppa/stand/libsa/libsa.h +++ b/sys/arch/hppa/stand/libsa/libsa.h @@ -1,5 +1,4 @@ -/* $OpenBSD: libsa.h,v 1.3 1998/07/13 03:36:01 mickey Exp $ */ -/* $NOWHERE: libsa.h,v 2.2 1998/06/22 19:34:47 mickey Exp $ */ +/* $OpenBSD: libsa.h,v 1.4 1998/07/13 03:52:12 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff |