summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/mtools/mtools/disable-hardcoded-configs.patch
blob: f18748709640c3ea703df2930925bda7b35260d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
From 9590860ba35cbd524cec51bdd009f0c63a7dd417 Mon Sep 17 00:00:00 2001
From: Ed Bartosh <ed.bartosh@linux.intel.com>
Date: Tue, 13 Jun 2017 14:55:52 +0300
Subject: [PATCH] Disabled reading host configs.

Upstream-Status: Inappropriate [native]

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>

---
 config.c | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/config.c b/config.c
index 415755f..b61a49d 100644
--- a/config.c
+++ b/config.c
@@ -774,14 +774,6 @@ void read_config(void)
 	memcpy(devices, const_devices,
 	       nr_const_devices*sizeof(struct device));
 
-    (void) ((parse(CONF_FILE,1) |
-	     parse(LOCAL_CONF_FILE,1) |
-	     parse(SYS_CONF_FILE,1)) ||
-	    (parse(OLD_CONF_FILE,1) |
-	     parse(OLD_LOCAL_CONF_FILE,1)));
-    /* the old-name configuration files only get executed if none of the
-     * new-name config files were used */
-
     homedir = get_homedir();
     if ( homedir ){
 	strncpy(conf_file, homedir, MAXPATHLEN );