diff options
author | 2017-07-08 15:40:29 +0000 | |
---|---|---|
committer | 2017-07-08 15:40:29 +0000 | |
commit | fdb183ab34d4f952cbc5763608b297d7ac2c34ac (patch) | |
tree | 0bf148b03f1ad17be658a1c06008aabbfca5d888 | |
parent | Increase size to make slaacd fit. (diff) | |
download | wireguard-openbsd-fdb183ab34d4f952cbc5763608b297d7ac2c34ac.tar.xz wireguard-openbsd-fdb183ab34d4f952cbc5763608b297d7ac2c34ac.zip |
slaacd needs libevent on the ramdisk
move forward deraadt@
-rw-r--r-- | distrib/arm64/ramdisk/list | 4 | ||||
-rw-r--r-- | distrib/armv7/ramdisk/list | 4 | ||||
-rw-r--r-- | distrib/miniroot/makeconf.awk | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/distrib/arm64/ramdisk/list b/distrib/arm64/ramdisk/list index d8b000df4c1..8e2fc2039ee 100644 --- a/distrib/arm64/ramdisk/list +++ b/distrib/arm64/ramdisk/list @@ -1,4 +1,4 @@ -# $OpenBSD: list,v 1.2 2017/02/18 02:01:53 jsg Exp $ +# $OpenBSD: list,v 1.3 2017/07/08 15:40:29 florian Exp $ SRCDIRS distrib/special @@ -89,7 +89,7 @@ COPY ${DESTDIR}/etc/firmware/atu-rfmd2958smc-ext etc/firmware/atu-rfmd2958smc-ex COPY ${DESTDIR}/etc/firmware/atu-rfmd2958smc-int etc/firmware/atu-rfmd2958smc-int # this is the list from distrib/miniroot/makeconf.awk with -lz added. -LIBS -lstubs -lutil -lm -lc -ltls -lssl -lcrypto -lz +LIBS -lstubs -lutil -lm -lc -ltls -lssl -lcrypto -levent -lz # copy the MAKEDEV script and make some devices SCRIPT ${DESTDIR}/dev/MAKEDEV dev/MAKEDEV diff --git a/distrib/armv7/ramdisk/list b/distrib/armv7/ramdisk/list index e6638e2fc86..a40302c9259 100644 --- a/distrib/armv7/ramdisk/list +++ b/distrib/armv7/ramdisk/list @@ -1,4 +1,4 @@ -# $OpenBSD: list,v 1.28 2016/12/31 02:06:35 deraadt Exp $ +# $OpenBSD: list,v 1.29 2017/07/08 15:40:29 florian Exp $ SRCDIRS distrib/special @@ -90,7 +90,7 @@ COPY ${DESTDIR}/etc/firmware/atu-rfmd2958smc-ext etc/firmware/atu-rfmd2958smc-ex COPY ${DESTDIR}/etc/firmware/atu-rfmd2958smc-int etc/firmware/atu-rfmd2958smc-int # this is the list from distrib/miniroot/makeconf.awk with -lz added. -LIBS -lstubs -lutil -lm -lc -ltls -lssl -lcrypto -lz +LIBS -lstubs -lutil -lm -lc -ltls -lssl -lcrypto -levent -lz # copy the MAKEDEV script and make some devices SCRIPT ${DESTDIR}/dev/MAKEDEV dev/MAKEDEV diff --git a/distrib/miniroot/makeconf.awk b/distrib/miniroot/makeconf.awk index b5e7fed3c40..24252b55ef2 100644 --- a/distrib/miniroot/makeconf.awk +++ b/distrib/miniroot/makeconf.awk @@ -1,4 +1,4 @@ -# $OpenBSD: makeconf.awk,v 1.24 2017/03/11 04:09:32 deraadt Exp $ +# $OpenBSD: makeconf.awk,v 1.25 2017/07/08 15:40:29 florian Exp $ # # generate crunchgen(1) configuration file from `list' spec. @@ -6,7 +6,7 @@ BEGIN { printf("#\n# This file is automatically generated by `makeconf'\n#\n\n"); - libs = "libs -lstubs -lutil -lm -ltls -lssl -lcrypto -lc"; + libs = "libs -lstubs -lutil -lm -ltls -lssl -lcrypto -levent -lc"; } $1 == "LIBS" { |