mirror of
https://git.yoctoproject.org/poky
synced 2026-07-16 15:57:04 +00:00
29d6678fd5
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
diff --git a/sound/soc/omap/Kconfig b/sound/soc/omap/Kconfig
|
|
index 4f7f040..ccd8973 100644
|
|
--- a/sound/soc/omap/Kconfig
|
|
+++ b/sound/soc/omap/Kconfig
|
|
@@ -55,3 +55,13 @@ config SND_OMAP_SOC_OMAP3_PANDORA
|
|
select SND_SOC_TWL4030
|
|
help
|
|
Say Y if you want to add support for SoC audio on the OMAP3 Pandora.
|
|
+
|
|
+config SND_OMAP_SOC_OMAP3_BEAGLE
|
|
+ tristate "SoC Audio support for OMAP3 Beagle"
|
|
+ depends on TWL4030_CORE && SND_OMAP_SOC && MACH_OMAP3_BEAGLE
|
|
+ select SND_OMAP_SOC_MCBSP
|
|
+ select SND_SOC_TWL4030
|
|
+ help
|
|
+ Say Y if you want to add support for SoC audio on the Beagleboard.
|
|
+
|
|
+
|
|
diff --git a/sound/soc/omap/Makefile b/sound/soc/omap/Makefile
|
|
index 76fedd9..0c9e4ac 100644
|
|
--- a/sound/soc/omap/Makefile
|
|
+++ b/sound/soc/omap/Makefile
|
|
@@ -12,6 +12,7 @@ snd-soc-overo-objs := overo.o
|
|
snd-soc-omap2evm-objs := omap2evm.o
|
|
snd-soc-sdp3430-objs := sdp3430.o
|
|
snd-soc-omap3pandora-objs := omap3pandora.o
|
|
+snd-soc-omap3beagle-objs := omap3beagle.o
|
|
|
|
obj-$(CONFIG_SND_OMAP_SOC_N810) += snd-soc-n810.o
|
|
obj-$(CONFIG_SND_OMAP_SOC_OSK5912) += snd-soc-osk5912.o
|
|
@@ -19,3 +20,4 @@ obj-$(CONFIG_SND_OMAP_SOC_OVERO) += snd-soc-overo.o
|
|
obj-$(CONFIG_MACH_OMAP2EVM) += snd-soc-omap2evm.o
|
|
obj-$(CONFIG_SND_OMAP_SOC_SDP3430) += snd-soc-sdp3430.o
|
|
obj-$(CONFIG_SND_OMAP_SOC_OMAP3_PANDORA) += snd-soc-omap3pandora.o
|
|
+obj-$(CONFIG_SND_OMAP_SOC_OMAP3_BEAGLE) += snd-soc-omap3beagle.o
|