diff options
author | 2013-12-28 12:03:57 +0000 | |
---|---|---|
committer | 2013-12-28 12:03:57 +0000 | |
commit | 1e345a1a3abcc7b7ac957277ef98c80a7945f28b (patch) | |
tree | 3b9892bc140bd1bc9301ae7df313fea51772bcd8 | |
parent | Round the size of the bootstrap up to a multiple of the disk sector size. (diff) | |
download | wireguard-openbsd-1e345a1a3abcc7b7ac957277ef98c80a7945f28b.tar.xz wireguard-openbsd-1e345a1a3abcc7b7ac957277ef98c80a7945f28b.zip |
Add installboot support for vax.
-rw-r--r-- | usr.sbin/installboot/Makefile | 5 | ||||
-rw-r--r-- | usr.sbin/installboot/vax/Makefile.inc | 7 | ||||
-rw-r--r-- | usr.sbin/installboot/vax/vax_installboot.c | 38 |
3 files changed, 48 insertions, 2 deletions
diff --git a/usr.sbin/installboot/Makefile b/usr.sbin/installboot/Makefile index 958133f3207..f1462584f64 100644 --- a/usr.sbin/installboot/Makefile +++ b/usr.sbin/installboot/Makefile @@ -1,8 +1,9 @@ -# $OpenBSD: Makefile,v 1.4 2013/12/28 11:00:33 jsing Exp $ +# $OpenBSD: Makefile,v 1.5 2013/12/28 12:03:57 jsing Exp $ NOMAN= -.if (${MACHINE} == "amd64" || ${MACHINE} == "hppa" || ${MACHINE} == "i386") +.if (${MACHINE} == "amd64" || ${MACHINE} == "hppa" || ${MACHINE} == "i386" || \ + ${MACHINE} == "vax") PROG= installboot diff --git a/usr.sbin/installboot/vax/Makefile.inc b/usr.sbin/installboot/vax/Makefile.inc new file mode 100644 index 00000000000..de415e94f9e --- /dev/null +++ b/usr.sbin/installboot/vax/Makefile.inc @@ -0,0 +1,7 @@ +# $OpenBSD: Makefile.inc,v 1.1 2013/12/28 12:03:57 jsing Exp $ + +CPPFLAGS += -I${.CURDIR}/vax +CFLAGS += -DBOOTSTRAP + +.PATH: ${.CURDIR}/vax +SRCS += vax_installboot.c diff --git a/usr.sbin/installboot/vax/vax_installboot.c b/usr.sbin/installboot/vax/vax_installboot.c new file mode 100644 index 00000000000..9bcd5ad84a1 --- /dev/null +++ b/usr.sbin/installboot/vax/vax_installboot.c @@ -0,0 +1,38 @@ +/* $OpenBSD: vax_installboot.c,v 1.1 2013/12/28 12:03:57 jsing Exp $ */ + +/* + * Copyright (c) 2013 Joel Sing <jsing@openbsd.org> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include "installboot.h" + +void +md_init(void) +{ + stages = 2; + stage1 = "/usr/mdec/xxboot"; + stage2 = "/boot"; +} + +void +md_loadboot(void) +{ +} + +void +md_installboot(int devfd, char *dev) +{ + bootstrap(devfd, dev, stage1); +} |