diff options
author | Archaic <archaic@linuxfromscratch.org> | 2006-05-03 19:43:38 +0000 |
---|---|---|
committer | Archaic <archaic@linuxfromscratch.org> | 2006-05-03 19:43:38 +0000 |
commit | 8abeb3bc1ac03eb633871b379364b01ca9b4a813 (patch) | |
tree | bd1cdc4515a2bdacbc2e84bfb68e9fa5eb53564d /chapter06/udev.xml | |
parent | 09f1daf45389f406a5225fa829e896d87e3a140b (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.xml | 12 |
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 <argz.h> 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 && strstr(envar, "usb")) + return 0; + envar = getenv("DEVPATH"); + if (envar && strstr(envar, "usb")) + return 0; + setenv("_SEPARATOR", "-------------------------------", 1); argz_create(environ, &envz, &len); argz_stringify(envz, len, '\n'); |