* [PATCH] net: ifup: skip *-discover files for ifup -a
@ 2014-06-23 7:14 Sascha Hauer
0 siblings, 0 replies; only message in thread
From: Sascha Hauer @ 2014-06-23 7:14 UTC (permalink / raw)
To: barebox
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
net/ifup.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/ifup.c b/net/ifup.c
index 2e59025..de0c5f8 100644
--- a/net/ifup.c
+++ b/net/ifup.c
@@ -136,6 +136,8 @@ int ifup_all(unsigned flags)
while ((d = readdir(dir))) {
if (*d->d_name == '.')
continue;
+ if (strstr(d->d_name, "-discover"))
+ continue;
ifup(d->d_name, flags);
}
--
2.0.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2014-06-23 7:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-23 7:14 [PATCH] net: ifup: skip *-discover files for ifup -a Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox