From patchwork Fri Jan 4 18:16:59 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: "David J. Fogle" X-Patchwork-Id: 1020861 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=exitstrategytech.com Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43WY2R0vS3z9s55 for ; Sat, 5 Jan 2019 05:18:55 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 57DC18772C; Fri, 4 Jan 2019 18:18:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id g6En7VRM0G9F; Fri, 4 Jan 2019 18:18:51 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 36FBC87709; Fri, 4 Jan 2019 18:18:51 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id DA5C71C0D11 for ; Fri, 4 Jan 2019 18:18:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D765486615 for ; Fri, 4 Jan 2019 18:18:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id akS3kQ3gJYOJ for ; Fri, 4 Jan 2019 18:18:49 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.exitstrategytech.com (50-73-118-36-ip-static.hfc.comcastbusiness.net [50.73.118.36]) by whitealder.osuosl.org (Postfix) with ESMTPS id 2112E864D2 for ; Fri, 4 Jan 2019 18:18:49 +0000 (UTC) Received: from mailbox01.exitstrategytech.com (192.168.13.9) by mailbox01.exitstrategytech.com (192.168.13.9) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.2.196.0; Fri, 4 Jan 2019 12:16:59 -0600 Received: from mailbox01.exitstrategytech.com ([fe80::2906:3cc4:b6a8:957]) by mailbox01.exitstrategytech.com ([fe80::2906:3cc4:b6a8:957%11]) with mapi id 15.02.0196.000; Fri, 4 Jan 2019 12:16:59 -0600 From: "David J. Fogle" To: "buildroot@busybox.net" Thread-Topic: [PATCH] systemd: set vconsole support option to default y Thread-Index: AQHUpFlqvke8nGNT2EGZ+gwDnqEkTw== Date: Fri, 4 Jan 2019 18:16:59 +0000 Message-ID: <8e4371b94ff9458b901d240de1c97cce@exitstrategytech.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [192.168.13.1] MIME-Version: 1.0 Subject: [Buildroot] [PATCH] systemd: set vconsole support option to default y X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: "yann.morin.1998@free.fr" , "maxime.hadjinlian@gmail.com" Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" This patch defaults the systemd vconsole support option to y. The reasoning is a matter of convention, Linux systems have vconsoles in almost all cases. Personally, I spent a few hours feeling I had broken something when I was switching to systemd. In an effort to prevent future buildroot users from suffering this fate, we are enabling this support by default, as it is far less likely to *not* want vterms, and if that is the use-case, it can be disabled as needed. Signed-off-by: David Fogle Reviewed-by: "Yann E. MORIN" ---  package/systemd/Config.in | 1 +  1 file changed, 1 insertion(+) diff --git a/package/systemd/Config.in b/package/systemd/Config.in index 25f322e8f3..920b65db44 100644 --- a/package/systemd/Config.in +++ b/package/systemd/Config.in @@ -325,6 +325,7 @@ config BR2_PACKAGE_SYSTEMD_TMPFILES    config BR2_PACKAGE_SYSTEMD_VCONSOLE         bool "enable vconsole tool" +       default y         help           systemd-vconsole-setup is an early boot service that           configures the virtual console font and console keymap.