From patchwork Tue Oct 30 20:45:19 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sagaert Johan X-Patchwork-Id: 195621 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 810B82C0081 for ; Wed, 31 Oct 2012 07:46:00 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id D9530A03EC; Tue, 30 Oct 2012 20:45:58 +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 bPOAjAOa+VSg; Tue, 30 Oct 2012 20:45:57 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 0523FA00F2; Tue, 30 Oct 2012 20:45:57 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 911BC8F74A for ; Tue, 30 Oct 2012 20:45:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id E0FDC8CD6C for ; Tue, 30 Oct 2012 20:45:55 +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 nsT6-rF92I7U for ; Tue, 30 Oct 2012 20:45:52 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailrelay001.isp.belgacom.be (mailrelay001.isp.belgacom.be [195.238.6.51]) by whitealder.osuosl.org (Postfix) with ESMTP id 2AE4F8CBC9 for ; Tue, 30 Oct 2012 20:45:51 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AlIFACc8kFBR8dr0/2dsb2JhbABEwWaBfoEJgnsjSQEFSzeICqwNkCqPLAEDgyQDlXWBGo8ognCBXA Received: from 244.218-241-81.adsl-dyn.isp.belgacom.be (HELO debian605.apex) ([81.241.218.244]) by relay.skynet.be with ESMTP; 30 Oct 2012 21:45:49 +0100 From: Sagaert Johan To: buildroot@busybox.net Date: Tue, 30 Oct 2012 21:45:19 +0100 Message-Id: <1351629919-11452-1-git-send-email-sagaert.johan@skynet.be> X-Mailer: git-send-email 1.8.0 Cc: Sagaert Johan Subject: [Buildroot] [PATCH 1/1] Do not ask for hostname and system banner when selecting a custom skeleton. X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net The hostname and system banner should not be overwritten when a custom skeleton is selected. Signed-off-by: Sagaert Johan --- target/generic/Config.in | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/target/generic/Config.in b/target/generic/Config.in index b8472f4..6490b0d 100644 --- a/target/generic/Config.in +++ b/target/generic/Config.in @@ -1,17 +1,5 @@ menu "System configuration" -config BR2_TARGET_GENERIC_HOSTNAME - string "System hostname" - default "buildroot" - help - Select system hostname to be stored in /etc/hostname. - -config BR2_TARGET_GENERIC_ISSUE - string "System banner" - default "Welcome to Buildroot" - help - Select system banner (/etc/issue) to be displayed at login. - choice prompt "/dev management" default BR2_ROOTFS_DEVICE_CREATION_STATIC @@ -118,6 +106,18 @@ endif if BR2_ROOTFS_SKELETON_DEFAULT +config BR2_TARGET_GENERIC_HOSTNAME + string "System hostname" + default "buildroot" + help + Select system hostname to be stored in /etc/hostname. + +config BR2_TARGET_GENERIC_ISSUE + string "System banner" + default "Welcome to Buildroot" + help + Select system banner (/etc/issue) to be displayed at login. + config BR2_TARGET_GENERIC_GETTY_PORT string "Port to run a getty (login prompt) on" default "ttyS0"