diff options
author | 2014-01-29 11:22:13 +0000 | |
---|---|---|
committer | 2014-01-29 11:22:13 +0000 | |
commit | 2ff76bd42fbd494baa397e0757f6b0f70b86bf34 (patch) | |
tree | ea58991a53864c7f9cb1d5a017bfb23def3dfd44 | |
parent | same tweak as per ch* utils: for -H, remove brackets in description; (diff) | |
download | wireguard-openbsd-2ff76bd42fbd494baa397e0757f6b0f70b86bf34.tar.xz wireguard-openbsd-2ff76bd42fbd494baa397e0757f6b0f70b86bf34.zip |
Add rnddata[] placeholders to make boot block build again, same as
other platforms.
ok miod@
-rw-r--r-- | sys/arch/luna88k/stand/boot/boot.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/luna88k/stand/boot/boot.c b/sys/arch/luna88k/stand/boot/boot.c index 60f47c7fda4..4cc8cade039 100644 --- a/sys/arch/luna88k/stand/boot/boot.c +++ b/sys/arch/luna88k/stand/boot/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.2 2013/10/29 18:51:37 miod Exp $ */ +/* $OpenBSD: boot.c,v 1.3 2014/01/29 11:22:13 aoyama Exp $ */ /* $NetBSD: boot.c,v 1.3 2013/03/05 15:34:53 tsutsui Exp $ */ /* @@ -93,6 +93,8 @@ void (*cpu_boot)(uint32_t, uint32_t); uint32_t cpu_bootarg1; uint32_t cpu_bootarg2; +char rnddata[BOOTRANDOM_MAX]; /* XXX dummy */ + #if 0 int get_boot_device(const char *s, int *devp, int *unitp, int *partp) |