diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-07-19 14:44:26 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-19 14:44:26 +0000 |
commit | aa33ec8c089b6e0ed964f3f345e73c6fe9f4ba38 (patch) | |
tree | 7e5827be98b729167ad9912df09dce4e135ebded /conf | |
parent | 1b45793e53bc6eb1ac71ef2f051359b674815788 (diff) |
Support for disabling irq debug messages - slugbug 109.
This allows a simple local.conf change to re-enable the debug messages
simply by setting CMDLINE_DEBUG to ""
Diffstat (limited to 'conf')
-rw-r--r-- | conf/distro/openslug.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/conf/distro/openslug.conf b/conf/distro/openslug.conf index 33e655dcb6..4d4f9de837 100644 --- a/conf/distro/openslug.conf +++ b/conf/distro/openslug.conf @@ -32,6 +32,12 @@ EXTRA_IMAGECMD_jffs2 = "--pad --big-endian --eraseblock=0x20000 -D ${OPENSLUG_DE OPENSLUG_EXTRA_DEPENDS ?= "e2fsprogs reiserfsprogs upslug-native lrzsz" +# CMDLINE* macros define the kernel command line. CMDLINE_DEBUG is provided +# to enable/disable debugging in the distro. Here noirqdebug is used to +# remove the messages about unhandled interrupts - people debugging interrupt +# issues in the kernel need to cancel this (set CMDLINE_DEBUG empty in local.conf) +CMDLINE_DEBUG = "noirqdebug" + # Filesystem support modules are listed in here for easy removal, # as is the lrzsz serial package and other kernel modules which are # not absolutely required for boot. |