From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0EB25138335 for ; Tue, 26 Mar 2019 08:07:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E2BFE0898; Tue, 26 Mar 2019 08:07:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1E984E0896 for ; Tue, 26 Mar 2019 08:07:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD6E8335CEF for ; Tue, 26 Mar 2019 08:07:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18641589 for ; Tue, 26 Mar 2019 08:07:14 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1553584326.8ade87f50689f725e66548fedbe436c5f642c330.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_configkernel.sh X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 8ade87f50689f725e66548fedbe436c5f642c330 X-VCS-Branch: master Date: Tue, 26 Mar 2019 08:07:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0dc06c78-6dff-484f-95b1-98dc4db5c09f X-Archives-Hash: 8e377cab65f4de62fa934229acc26388 commit: 8ade87f50689f725e66548fedbe436c5f642c330 Author: Thomas Deutschmann gentoo org> AuthorDate: Tue Mar 26 03:51:55 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Tue Mar 26 07:12:06 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=8ade87f5 config_kernel(): rewrite --splash handling Signed-off-by: Thomas Deutschmann gentoo.org> gen_configkernel.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gen_configkernel.sh b/gen_configkernel.sh index e80efa8..898bbdd 100755 --- a/gen_configkernel.sh +++ b/gen_configkernel.sh @@ -393,9 +393,15 @@ config_kernel() { kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" "CONFIG_HYPERV_TSCPAGE" "y" fi + # Make sure kernel supports Splash, if --splash if isTrue "${SPLASH}" then + print_info 1 "$(getIndent 1)>> Ensure that required kernel options for Splash support are set..." kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" "CONFIG_FB_SPLASH" "y" + kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" "CONFIG_VT" "y" + kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" "CONFIG_TTY" "y" + kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" "CONFIG_FB" "y" + kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" "CONFIG_FRAMEBUFFER_CONSOLE" "y" kconfig_set_opt "${KERNEL_OUTPUTDIR}/.config" "CONFIG_FB_CON_DECOR" "y" fi