summaryrefslogtreecommitdiffstats
path: root/package/kernel/linux/modules/sound.mk
blob: c83e553d8ffe5a194dc14011bbe68a453123146b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
#
# Copyright (C) 2006-2013 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

SOUND_MENU:=Sound Support

# allow targets to override the soundcore stuff
SOUNDCORE_LOAD ?= \
	soundcore \
	snd \
	snd-hwdep \
	snd-seq-device \
	snd-rawmidi \
	snd-timer \
	snd-pcm \
	snd-mixer-oss \
	snd-pcm-oss \
	snd-compress

SOUNDCORE_FILES ?= \
	$(LINUX_DIR)/sound/soundcore.ko \
	$(LINUX_DIR)/sound/core/snd.ko \
	$(LINUX_DIR)/sound/core/snd-hwdep.ko \
	$(LINUX_DIR)/sound/core/seq/snd-seq-device.ko@lt4.13 \
	$(LINUX_DIR)/sound/core/snd-seq-device.ko@ge4.13 \
	$(LINUX_DIR)/sound/core/snd-rawmidi.ko \
	$(LINUX_DIR)/sound/core/snd-timer.ko \
	$(LINUX_DIR)/sound/core/snd-pcm.ko \
	$(LINUX_DIR)/sound/core/oss/snd-mixer-oss.ko \
	$(LINUX_DIR)/sound/core/oss/snd-pcm-oss.ko \
	$(LINUX_DIR)/sound/core/snd-compress.ko

SOUNDCORE_LOAD += \
	$(if $(CONFIG_SND_DMAENGINE_PCM),snd-pcm-dmaengine)

SOUNDCORE_FILES += \
	$(if $(CONFIG_SND_DMAENGINE_PCM),$(LINUX_DIR)/sound/core/snd-pcm-dmaengine.ko)

define KernelPackage/sound-core
  SUBMENU:=$(SOUND_MENU)
  TITLE:=Sound support
  DEPENDS:=@AUDIO_SUPPORT +kmod-input-core
  KCONFIG:= \
	CONFIG_SOUND \
	CONFIG_SND \
	CONFIG_SND_HWDEP \
	CONFIG_SND_RAWMIDI \
	CONFIG_SND_TIMER \
	CONFIG_SND_PCM \
	CONFIG_SND_PCM_TIMER=y \
	CONFIG_SND_SEQUENCER \
	CONFIG_SND_VIRMIDI \
	CONFIG_SND_SEQ_DUMMY \
	CONFIG_SND_SEQUENCER_OSS=y \
	CONFIG_HOSTAUDIO \
	CONFIG_SND_PCM_OSS \
	CONFIG_SND_MIXER_OSS \
	CONFIG_SOUND_OSS_CORE_PRECLAIM=y \
	CONFIG_SND_COMPRESS_OFFLOAD
  FILES:=$(SOUNDCORE_FILES)
  AUTOLOAD:=$(call AutoLoad,30,$(SOUNDCORE_LOAD))
endef

define KernelPackage/sound-core/uml
  FILES:= \
	$(LINUX_DIR)/sound/soundcore.ko \
	$(LINUX_DIR)/arch/um/drivers/hostaudio.ko
  AUTOLOAD+=$(call AutoLoad,30,soundcore hostaudio)
endef

define KernelPackage/sound-core/description
 Kernel modules for sound support
endef

$(eval $(call KernelPackage,sound-core))


define AddDepends/sound
  SUBMENU:=$(SOUND_MENU)
  DEPENDS+=kmod-sound-core $(1) @!TARGET_uml
endef


define KernelPackage/ac97
  TITLE:=ac97 controller
  KCONFIG:=CONFIG_SND_AC97_CODEC
  FILES:= \
	$(LINUX_DIR)/sound/ac97_bus.ko \
	$(LINUX_DIR)/sound/pci/ac97/snd-ac97-codec.ko
  AUTOLOAD:=$(call AutoLoad,35,ac97_bus snd-ac97-codec)
  $(call AddDepends/sound)
endef

define KernelPackage/ac97/description
 The ac97 controller
endef

$(eval $(call KernelPackage,ac97))


define KernelPackage/sound-mpu401
  TITLE:=MPU-401 uart driver
  KCONFIG:=CONFIG_SND_MPU401_UART
  FILES:= \
	$(LINUX_DIR)/sound/drivers/mpu401/snd-mpu401-uart.ko
  AUTOLOAD:=$(call AutoLoad,35,snd-mpu401-uart)
  $(call AddDepends/sound)
endef

define KernelPackage/sound-mpu401/description
 support for MIDI ports compatible with the Roland MPU-401
 interface in UART mode.
endef

$(eval $(call KernelPackage,sound-mpu401))


define KernelPackage/sound-seq
  TITLE:=Sequencer support
  FILES:= \
	$(LINUX_DIR)/sound/core/seq/snd-seq.ko \
	$(LINUX_DIR)/sound/core/seq/snd-seq-midi-event.ko \
	$(LINUX_DIR)/sound/core/seq/snd-seq-midi.ko
  AUTOLOAD:=$(call AutoLoad,35,snd-seq snd-seq-midi-event snd-seq-midi)
  $(call AddDepends/sound)
endef

define KernelPackage/sound-seq/description
 Kernel modules for sequencer support
endef

$(eval $(call KernelPackage,sound-seq))


define KernelPackage/sound-ens1371
  TITLE:=(Creative) Ensoniq AudioPCI 1371
  KCONFIG:=CONFIG_SND_ENS1371
  DEPENDS:=@PCI_SUPPORT +kmod-ac97
  FILES:=$(LINUX_DIR)/sound/pci/snd-ens1371.ko
  AUTOLOAD:=$(call AutoLoad,36,snd-ens1371)
  $(call AddDepends/sound)
endef

define KernelPackage/sound-ens1371/description
 support for (Creative) Ensoniq AudioPCI 1371 chips
endef

$(eval $(call KernelPackage,sound-ens1371))


define KernelPackage/sound-i8x0
  TITLE:=Intel/SiS/nVidia/AMD/ALi AC97 Controller
  DEPENDS:=+kmod-ac97
  KCONFIG:=CONFIG_SND_INTEL8X0
  FILES:=$(LINUX_DIR)/sound/pci/snd-intel8x0.ko
  AUTOLOAD:=$(call AutoLoad,36,snd-intel8x0)
  $(call AddDepends/sound)
endef

define KernelPackage/sound-i8x0/description
 support for the integrated AC97 sound device on motherboards
 with Intel/SiS/nVidia/AMD chipsets, or ALi chipsets using
 the M5455 Audio Controller.
endef

$(eval $(call KernelPackage,sound-i8x0))


define KernelPackage/sound-via82xx
  TITLE:=VIA 82xx AC97 Controller
  DEPENDS:=+kmod-ac97 +kmod-sound-mpu401
  KCONFIG:=CONFIG_SND_VIA82XX
  FILES:=$(LINUX_DIR)/sound/pci/snd-via82xx.ko
  AUTOLOAD:=$(call AutoLoad,36,snd-via82xx)
  $(call AddDepends/sound)
endef

define KernelPackage/sound-via82xx/description
 support for the integrated AC97 sound device on motherboards
 with VIA chipsets.
endef

$(eval $(call KernelPackage,sound-via82xx))


define KernelPackage/sound-soc-core
  TITLE:=SoC sound support
  DEPENDS:=+kmod-regmap-core +kmod-ac97
  KCONFIG:= \
	CONFIG_SND_SOC \
	CONFIG_SND_SOC_ADI=n \
	CONFIG_SND_SOC_DMAENGINE_PCM=y \
	CONFIG_SND_SOC_ALL_CODECS=n
  FILES:=$(LINUX_DIR)/sound/soc/snd-soc-core.ko
  AUTOLOAD:=$(call AutoLoad,55, snd-soc-core)
  $(call AddDepends/sound)
endef

$(eval $(call KernelPackage,sound-soc-core))


define KernelPackage/sound-soc-ac97
  TITLE:=AC97 Codec support
  KCONFIG:=CONFIG_SND_SOC_AC97_CODEC
  FILES:=$(LINUX_DIR)/sound/soc/codecs/snd-soc-ac97.ko
  AUTOLOAD:=$(call AutoLoad,57,snd-soc-ac97)
  DEPENDS:=+kmod-ac97 +kmod-sound-soc-core
  $(call AddDepends/sound)
endef

$(eval $(call KernelPackage,sound-soc-ac97))


define KernelPackage/sound-soc-imx
  TITLE:=IMX SoC support
  KCONFIG:=\
	CONFIG_SND_IMX_SOC \
	CONFIG_SND_SOC_IMX_AUDMUX \
	CONFIG_SND_SOC_FSL_SSI \
	CONFIG_SND_SOC_IMX_PCM_DMA
  FILES:= \
	$(LINUX_DIR)/sound/soc/fsl/snd-soc-imx-audmux.ko \
	$(LINUX_DIR)/sound/soc/fsl/snd-soc-fsl-ssi.ko \
	$(LINUX_DIR)/sound/soc/fsl/imx-pcm-dma.ko
  AUTOLOAD:=$(call AutoLoad,56,snd-soc-imx-audmux snd-soc-fsl-ssi snd-soc-imx-pcm)
  DEPENDS:=@TARGET_imx6 +kmod-sound-soc-core
  $(call AddDepends/sound)
endef

define KernelPackage/sound-soc-imx/description
 Support for i.MX6 Platform sound (ssi/audmux/pcm)
endef

$(eval $(call KernelPackage,sound-soc-imx))


define KernelPackage/sound-soc-imx-sgtl5000
  TITLE:=IMX SoC support for SGTL5000
  KCONFIG:=CONFIG_SND_SOC_IMX_SGTL5000
  FILES:=\
	$(LINUX_DIR)/sound/soc/codecs/snd-soc-sgtl5000.ko \
	$(LINUX_DIR)/sound/soc/fsl/snd-soc-imx-sgtl5000.ko
  AUTOLOAD:=$(call AutoLoad,57,snd-soc-sgtl5000 snd-soc-imx-sgtl5000)
  DEPENDS:=@TARGET_imx6 +kmod-sound-soc-imx
  $(call AddDepends/sound)
endef

define KernelPackage/sound-soc-imx-sgtl5000/description
 Support for i.MX6 Platform sound SGTL5000 codec
endef

$(eval $(call KernelPackage,sound-soc-imx-sgtl5000))


define KernelPackage/sound-soc-gw_avila
  TITLE:=Gateworks Avila SoC sound support
  KCONFIG:= \
	CONFIG_SND_GW_AVILA_SOC \
	CONFIG_SND_GW_AVILA_SOC_PCM \
	CONFIG_SND_GW_AVILA_SOC_HSS
  FILES:= \
	$(LINUX_DIR)/sound/soc/codecs/snd-soc-tlv320aic3x.ko \
	$(LINUX_DIR)/sound/soc/gw-avila/snd-soc-gw-avila.ko \
	$(LINUX_DIR)/sound/soc/gw-avila/snd-soc-gw-avila-pcm.ko \
	$(LINUX_DIR)/sound/soc/gw-avila/snd-soc-gw-avila-hss.ko
  AUTOLOAD:=$(call AutoLoad,65,snd-soc-tlv320aic3x snd-soc-gw-avila snd-soc-gw-avila-pcm snd-soc-gw-avila-hss)
  DEPENDS:=@TARGET_ixp4xx +kmod-sound-soc-core
  $(call AddDepends/sound)
endef

$(eval $(call KernelPackage,sound-soc-gw_avila))


define KernelPackage/pcspkr
  DEPENDS:=@TARGET_x86 +kmod-input-core
  TITLE:=PC speaker support
  KCONFIG:= \
	CONFIG_SND_PCSP
  FILES:= \
	$(LINUX_DIR)/sound/drivers/pcsp/snd-pcsp.ko
  AUTOLOAD:=$(call AutoLoad,50,snd-pcsp)
  $(call AddDepends/sound)
endef

define KernelPackage/pcspkr/description
 This enables sounds (tones) through the pc speaker
endef

$(eval $(call KernelPackage,pcspkr))

define KernelPackage/sound-dummy
  $(call AddDepends/sound)
  TITLE:=Null sound output driver (sink)
  KCONFIG:= \
	CONFIG_SND_DUMMY
  FILES:= \
	$(LINUX_DIR)/sound/drivers/snd-dummy.ko
  AUTOLOAD:=$(call AutoLoad,32,snd-dummy)
endef

define KernelPackage/sound_dummy/description
 Dummy sound device for Alsa when no hardware present
endef

$(eval $(call KernelPackage,sound-dummy))

define KernelPackage/sound-hda-core
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio Sound Core Support
  KCONFIG:= \
	CONFIG_SND_HDA_CORE@ge4.1 \
	CONFIG_SND_HDA_HWDEP=y \
	CONFIG_SND_HDA_RECONFIG=n \
	CONFIG_SND_HDA_INPUT_BEEP=n \
	CONFIG_SND_HDA_PATCH_LOADER=n \
	CONFIG_SND_HDA_GENERIC
  FILES:= \
	$(LINUX_DIR)/sound/hda/snd-hda-core.ko@ge4.1 \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec.ko \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-generic.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-core@ge4.1 snd-hda-codec snd-hda-codec-generic)
  $(call AddDepends/sound,+kmod-regmap-core)
endef

define KernelPackage/sound-hda-core/description
 Kernel modules for HD Audio sound support
endef

$(eval $(call KernelPackage,sound-hda-core))

define KernelPackage/sound-hda-codec-realtek
  SUBMENU:=$(SOUND_MENU)
  TITLE:= HD Audio Realtek Codec
  KCONFIG:= \
	CONFIG_SND_HDA_CODEC_REALTEK
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-realtek.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-codec-realtek)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-codec-realtek/description
 Kernel modules for Intel HDA Realtek codec support
endef

$(eval $(call KernelPackage,sound-hda-codec-realtek))

define KernelPackage/sound-hda-codec-cmedia
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio C-Media Codec
  KCONFIG:= \
	CONFIG_SND_HDA_CODEC_CMEDIA
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-cmedia.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-codec-cmedia)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-codec-cmedia/description
 Kernel modules for HD Audio C-Media codec support
endef

$(eval $(call KernelPackage,sound-hda-codec-cmedia))

define KernelPackage/sound-hda-codec-analog
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio Analog Devices Codec
  KCONFIG:= \
	CONFIG_SND_HDA_CODEC_ANALOG
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-analog.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-codec-analog)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-codec-analog/description
 Kernel modules for HD Audio Analog Devices codec support
endef

$(eval $(call KernelPackage,sound-hda-codec-analog))

define KernelPackage/sound-hda-codec-idt
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio Sigmatel IDT Codec
  KCONFIG:= \
	CONFIG_SND_HDA_CODEC_SIGMATEL
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-idt.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-codec-idt)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-codec-idt/description
 Kernel modules for HD Audio Sigmatel IDT codec support
endef

$(eval $(call KernelPackage,sound-hda-codec-idt))

define KernelPackage/sound-hda-codec-si3054
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio Silicon Labs 3054 Codec
  KCONFIG:= \
	CONFIG_SND_HDA_CODEC_SI3054
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-si3054.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-codec-si3054)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-codec-si3054/description
 Kernel modules for HD Audio Silicon Labs 3054 codec support
endef

$(eval $(call KernelPackage,sound-hda-codec-si3054))

define KernelPackage/sound-hda-codec-cirrus
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio Cirrus Logic Codec
  KCONFIG:= \
	CONFIG_SND_HDA_CODEC_CIRRUS
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-cirrus.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-codec-cirrus)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-codec-cirrus/description
 Kernel modules for HD Audio Cirrus Logic codec support
endef

$(eval $(call KernelPackage,sound-hda-codec-cirrus))

define KernelPackage/sound-hda-codec-ca0110
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio Creative CA0110 Codec
  KCONFIG:= \
	CONFIG_SND_HDA_CODEC_CA0110
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-ca0110.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-codec-ca0110)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-codec-ca0110/description
 Kernel modules for HD Audio Creative CA0110 codec support
endef

$(eval $(call KernelPackage,sound-hda-codec-ca0110))

define KernelPackage/sound-hda-codec-ca0132
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio Creative CA0132 Codec
  KCONFIG:= \
	CONFIG_SND_HDA_CODEC_CA0132 \
	CONFIG_SND_HDA_CODEC_CA0132_DSP=n
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-ca0132.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-codec-ca0132)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-codec-ca0132/description
 Kernel modules for HD Audio Creative CA0132 codec support
endef

$(eval $(call KernelPackage,sound-hda-codec-ca0132))

define KernelPackage/sound-hda-codec-conexant
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio Conexant Codec
  KCONFIG:= \
	CONFIG_SND_HDA_CODEC_CONEXANT
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-conexant.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-codec-conexant)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-codec-conexant/description
 Kernel modules for HD Audio Conexant codec support
endef

$(eval $(call KernelPackage,sound-hda-codec-conexant))

define KernelPackage/sound-hda-codec-via
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio Via Codec
  KCONFIG:= \
	CONFIG_SND_HDA_CODEC_VIA
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-via.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-codec-via)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-codec-via/description
 Kernel modules for HD Audio VIA codec support
endef

$(eval $(call KernelPackage,sound-hda-codec-via))

define KernelPackage/sound-hda-codec-hdmi
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio HDMI/DisplayPort Codec
  KCONFIG:= \
	CONFIG_SND_HDA_CODEC_HDMI
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-codec-hdmi.ko
  AUTOLOAD:=$(call AutoProbe,snd-hda-codec-hdmi)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-codec-hdmi/description
 Kernel modules for HD Audio HDMI codec support
endef

$(eval $(call KernelPackage,sound-hda-codec-hdmi))

define KernelPackage/sound-hda-intel
  SUBMENU:=$(SOUND_MENU)
  TITLE:=HD Audio Intel Driver
  KCONFIG:= \
	CONFIG_SOUND_PCI \
	CONFIG_SND_HDA_INTEL
  FILES:= \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-intel.ko \
	$(LINUX_DIR)/sound/pci/hda/snd-hda-controller.ko@lt4.4
  AUTOLOAD:=$(call AutoProbe,snd-hda-controller@lt4.4 snd-hda-intel)
  $(call AddDepends/sound,kmod-sound-hda-core)
endef

define KernelPackage/sound-hda-intel/description
 Kernel modules for HD Audio Intel driver support
endef

$(eval $(call KernelPackage,sound-hda-intel))