From: Martin Bark Date: Thu, 24 Apr 2014 18:47:40 +0000 (+0100) Subject: qemu x86/x86_64: Add kernel IPC support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a1865331edcc5f328d941ad7615126541598f6f0;p=buildroot.git qemu x86/x86_64: Add kernel IPC support The alsa utils packages require a kernel with IPC support to run. The kernel config for the x86 and x86_64 qemu build includes sound support using the hda driver but without the IPC support the alsa utils won't work. This patch adds IPC support to the x86 and x86_64 kernel to allow alsa utils to run and brings the kernel config inline with kernel configs for other qemu boards. Signed-off-by: Martin Bark Signed-off-by: Peter Korsgaard --- diff --git a/board/qemu/x86/linux-3.13.config b/board/qemu/x86/linux-3.13.config index ad9517c19b..d738e4d374 100644 --- a/board/qemu/x86/linux-3.13.config +++ b/board/qemu/x86/linux-3.13.config @@ -1,5 +1,6 @@ # CONFIG_LOCALVERSION_AUTO is not set # CONFIG_SWAP is not set +CONFIG_SYSVIPC=y # CONFIG_COMPAT_BRK is not set # CONFIG_BLK_DEV_BSG is not set # CONFIG_IOSCHED_DEADLINE is not set diff --git a/board/qemu/x86_64/linux-3.13.config b/board/qemu/x86_64/linux-3.13.config index ad9517c19b..d738e4d374 100644 --- a/board/qemu/x86_64/linux-3.13.config +++ b/board/qemu/x86_64/linux-3.13.config @@ -1,5 +1,6 @@ # CONFIG_LOCALVERSION_AUTO is not set # CONFIG_SWAP is not set +CONFIG_SYSVIPC=y # CONFIG_COMPAT_BRK is not set # CONFIG_BLK_DEV_BSG is not set # CONFIG_IOSCHED_DEADLINE is not set