diff options
| author | 2014-01-19 02:58:50 +0000 | |
|---|---|---|
| committer | 2014-01-19 02:58:50 +0000 | |
| commit | b4544c7c7f204e0163176d2c291c88d0ed370abc (patch) | |
| tree | d9ede41f4ef30d7a37eff82c7d94904e0bc1688a /usr.sbin/installboot/hppa_installboot.c | |
| parent | all 64bit archs myx runs on support bus_space 8 things because of work i (diff) | |
| download | wireguard-openbsd-b4544c7c7f204e0163176d2c291c88d0ed370abc.tar.xz wireguard-openbsd-b4544c7c7f204e0163176d2c291c88d0ed370abc.zip | |
Rework installboot and use a single directory with a single makefile. The
directory per machine model is arguably cleaner, however it does not play
well with distrib/special and instbin.
Discussed with deraadt@
Diffstat (limited to 'usr.sbin/installboot/hppa_installboot.c')
| -rw-r--r-- | usr.sbin/installboot/hppa_installboot.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/usr.sbin/installboot/hppa_installboot.c b/usr.sbin/installboot/hppa_installboot.c new file mode 100644 index 00000000000..27af0fa0cbd --- /dev/null +++ b/usr.sbin/installboot/hppa_installboot.c @@ -0,0 +1,37 @@ +/* $OpenBSD: hppa_installboot.c,v 1.1 2014/01/19 02:58:50 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 = 1; + stage1 = "/usr/mdec/boot.lif"; +} + +void +md_loadboot(void) +{ +} + +void +md_installboot(int devfd, char *dev) +{ + bootstrap(devfd, dev, stage1); +} |
