blob: 1304ee3bfdc9bd218ea9e193e66af8bb07856809 [file] [log] [blame]
Andrew Geisslerd25ed322020-06-27 00:28:28 -05001From b921e5204030845dc7c9d16d5f66d965e8d05367 Mon Sep 17 00:00:00 2001
Andrew Geissler82c905d2020-04-13 13:39:40 -05002From: Jeremy Puhlman <jpuhlman@mvista.com>
3Date: Thu, 19 Mar 2020 11:54:26 -0700
4Subject: [PATCH] Add enable/disable libudev
5
6Upstream-Status: Pending
7Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
Andrew Geisslerd25ed322020-06-27 00:28:28 -05008
9[update patch context]
10Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com>
Andrew Geissler82c905d2020-04-13 13:39:40 -050011---
12 configure | 4 ++++
13 1 file changed, 4 insertions(+)
14
Andrew Geissler635e0e42020-08-21 15:58:33 -050015Index: qemu-5.1.0/configure
16===================================================================
17--- qemu-5.1.0.orig/configure
18+++ qemu-5.1.0/configure
19@@ -1640,6 +1640,10 @@ for opt do
Andrew Geissler82c905d2020-04-13 13:39:40 -050020 ;;
Andrew Geissler635e0e42020-08-21 15:58:33 -050021 --disable-libdaxctl) libdaxctl=no
Andrew Geissler82c905d2020-04-13 13:39:40 -050022 ;;
23+ --enable-libudev) libudev="yes"
24+ ;;
25+ --disable-libudev) libudev="no"
26+ ;;
27 *)
28 echo "ERROR: unknown option $opt"
29 echo "Try '$0 --help' for more information"