aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/udev.xml
diff options
context:
space:
mode:
authorArchaic <archaic@linuxfromscratch.org>2006-05-03 19:43:38 +0000
committerArchaic <archaic@linuxfromscratch.org>2006-05-03 19:43:38 +0000
commit8abeb3bc1ac03eb633871b379364b01ca9b4a813 (patch)
treebd1cdc4515a2bdacbc2e84bfb68e9fa5eb53564d /chapter06/udev.xml
parent09f1daf45389f406a5225fa829e896d87e3a140b (diff)
Updated the bug.c code to avoid USB-related uevent leakage reports.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7584 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/udev.xml')
-rw-r--r--chapter06/udev.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/chapter06/udev.xml b/chapter06/udev.xml
index 94178b8a2..4dfa9e867 100644
--- a/chapter06/udev.xml
+++ b/chapter06/udev.xml
@@ -138,12 +138,22 @@ ln -sv /proc/kcore /lib/udev/devices/core</userinput></screen>
#include &lt;argz.h&gt;
int main(int argc, char * argv[])
{
+ char * envar;
char * envz;
size_t len;
int bug;
bug = open("/dev/bug", O_WRONLY | O_APPEND);
if (bug == -1)
- return 0;
+ return 0;
+
+ /* Ignore everything USB-related to avoid spamming the list */
+ envar = getenv("PHYSDEVPATH");
+ if (envar &amp;&amp; strstr(envar, "usb"))
+ return 0;
+ envar = getenv("DEVPATH");
+ if (envar &amp;&amp; strstr(envar, "usb"))
+ return 0;
+
setenv("_SEPARATOR", "-------------------------------", 1);
argz_create(environ, &amp;envz, &amp;len);
argz_stringify(envz, len, '\n');