-2

I want "no audio" functionality in an embedded system. So, any idea about how to configure kernel without any audio?

Thanks.

2
  • 2
    So did you actually ever start make menuconfig?
    – Daniel B
    Commented Dec 5, 2014 at 9:28
  • I was about to ask about that as well. You can disable a load of stuff, or make them modules from menuconfig
    – Journeyman Geek
    Commented Dec 5, 2014 at 9:29

2 Answers 2

0
  1. Use make menuconfig to find the name of the subsystem (in this case CONFIG_SOUND).
  2. Create a kernel config fragment containing:
CONFIG_SOUND=n
  1. Setup your configuration file with both the default config and the fragment:
make defconfig <NAME_OF_FRAGMENT>
-1

From make menuconfig, disable Device Drivers -> Sound card support, or if you're editing the .config file, prepend CONFIG_SOUND with a #.

1
  • "if you're editing the .config file..." -- Bad advice.
    – sawdust
    Commented Dec 6, 2014 at 5:43

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .