blob: 40d83fcfa38d33740f7bf8d7f82a187b15542d79 [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
15diff --git a/configure b/configure
Andrew Geisslerd25ed322020-06-27 00:28:28 -050016index 36646e7b..48912a94 100755
Andrew Geissler82c905d2020-04-13 13:39:40 -050017--- a/configure
18+++ b/configure
Andrew Geisslerd25ed322020-06-27 00:28:28 -050019@@ -1601,6 +1601,10 @@ for opt do
Andrew Geissler82c905d2020-04-13 13:39:40 -050020 ;;
Andrew Geisslerd25ed322020-06-27 00:28:28 -050021 --gdb=*) gdb_bin="$optarg"
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"
30--
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500312.24.0
Andrew Geissler82c905d2020-04-13 13:39:40 -050032