From 9d3083b4d152e1ef9106baa11c7b2626c17bbe85 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Fri, 16 Feb 2018 11:30:37 +0100 Subject: [PATCH] kernel: install flex and bison Kconfig lexer and parser are built from real .l and .y since 4.16. Signed-off-by: Ilya Dryomov --- kernel/build/setup | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/build/setup b/kernel/build/setup index 9c4a0683..c3dc1c62 100644 --- a/kernel/build/setup +++ b/kernel/build/setup @@ -32,11 +32,13 @@ export LC_ALL=C # the following is vulnerable to i18n if test -f /etc/redhat-release ; then $SUDO yum install -y redhat-lsb-core $SUDO yum install -y elfutils-libelf-devel # for ORC unwinder + $SUDO yum install -y flex bison # for Kconfig fi if which apt-get > /dev/null ; then $SUDO apt-get install -y lsb-release $SUDO apt-get install -y libelf-dev # for ORC unwinder + $SUDO apt-get install -y flex bison # for Kconfig fi case $(lsb_release -si) in -- 2.47.3