summaryrefslogtreecommitdiffstats
path: root/usr.sbin/installboot
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2013-12-27 14:23:49 +0000
committerjsing <jsing@openbsd.org>2013-12-27 14:23:49 +0000
commita99b96417f78116f7914637aef745e708d826611 (patch)
tree5bd256bbc85155df56bd08cbdc62306774e76dd1 /usr.sbin/installboot
parentProvide a bootstrap implementation (effectively a `disklabel -B' (diff)
downloadwireguard-openbsd-a99b96417f78116f7914637aef745e708d826611.tar.xz
wireguard-openbsd-a99b96417f78116f7914637aef745e708d826611.zip
Add installboot support for hppa.
Diffstat (limited to 'usr.sbin/installboot')
-rw-r--r--usr.sbin/installboot/Makefile4
-rw-r--r--usr.sbin/installboot/hppa/Makefile.inc8
-rw-r--r--usr.sbin/installboot/hppa/hppa_installboot.c39
3 files changed, 49 insertions, 2 deletions
diff --git a/usr.sbin/installboot/Makefile b/usr.sbin/installboot/Makefile
index 041117cd9ee..9fe913c2889 100644
--- a/usr.sbin/installboot/Makefile
+++ b/usr.sbin/installboot/Makefile
@@ -1,8 +1,8 @@
-# $OpenBSD: Makefile,v 1.2 2013/12/27 14:12:56 jsing Exp $
+# $OpenBSD: Makefile,v 1.3 2013/12/27 14:23:49 jsing Exp $
NOMAN=
-.if (${MACHINE} == "amd64" || ${MACHINE} == "i386")
+.if (${MACHINE} == "amd64" || ${MACHINE} == "hppa" || ${MACHINE} == "i386")
PROG= installboot
diff --git a/usr.sbin/installboot/hppa/Makefile.inc b/usr.sbin/installboot/hppa/Makefile.inc
new file mode 100644
index 00000000000..1aa1c9c9251
--- /dev/null
+++ b/usr.sbin/installboot/hppa/Makefile.inc
@@ -0,0 +1,8 @@
+# $OpenBSD: Makefile.inc,v 1.1 2013/12/27 14:23:49 jsing Exp $
+
+CPPFLAGS += -I${.CURDIR}/hppa
+
+SRCS += bootstrap.c
+
+.PATH: ${.CURDIR}/hppa
+SRCS += hppa_installboot.c
diff --git a/usr.sbin/installboot/hppa/hppa_installboot.c b/usr.sbin/installboot/hppa/hppa_installboot.c
new file mode 100644
index 00000000000..a37b9ee3654
--- /dev/null
+++ b/usr.sbin/installboot/hppa/hppa_installboot.c
@@ -0,0 +1,39 @@
+/* $OpenBSD: hppa_installboot.c,v 1.1 2013/12/27 14:23:49 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 <unistd.h>
+
+#include "installboot.h"
+
+void
+md_init(void)
+{
+ stages = 1;
+ stage1 = "/usr/mdec/boot.lif";
+}
+
+void
+md_loadboot(void)
+{
+}
+
+void
+md_installboot(int devfd, char *dev)
+{
+ bootstrap(devfd, dev, stage1);
+}