blob: 4b37967e7a9ed8c4dda5d8bd98ebf2b72dc1835f [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
William A. Kennington IIIac69b482021-06-02 12:28:27 -070015Index: qemu-6.0.0/configure
Andrew Geissler635e0e42020-08-21 15:58:33 -050016===================================================================
William A. Kennington IIIac69b482021-06-02 12:28:27 -070017--- qemu-6.0.0.orig/configure
18+++ qemu-6.0.0/configure
19@@ -1565,6 +1565,10 @@ for opt do
Andrew Geissler82c905d2020-04-13 13:39:40 -050020 ;;
William A. Kennington IIIac69b482021-06-02 12:28:27 -070021 --disable-gio) gio=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"