From patchwork Tue Oct 30 20:45:19 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/1] Do not ask for hostname and system banner when selecting a custom skeleton. Date: Tue, 30 Oct 2012 10:45:19 -0000 From: Sagaert Johan X-Patchwork-Id: 195621 Message-Id: <1351629919-11452-1-git-send-email-sagaert.johan@skynet.be> To: buildroot@busybox.net Cc: Sagaert Johan 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"