X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 165C1DC03E8 for ; Sat, 29 Jun 2013 20:41:35 +0000 (UTC) Received: from compute1.internal (compute1.nyi.mail.srv.osa [10.202.2.41]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 2ADFA210E6 for ; Sat, 29 Jun 2013 16:41:31 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute1.internal (MEProxy); Sat, 29 Jun 2013 16:41:31 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id :in-reply-to:references; s=smtpout; bh=CI/lwnv3f9+PW1VIPB4FfeSym wY=; b=cwYq3ZOIYGy80sdkPg51vJCyfo5WqOGgEg3pGN1sN1P4MLKQO7k+lxcPs 8u9j8Yk0HMf51kf9pqZ4muAEkaKN/xYSZCsZoHMcmZ5yipWutke2KNiNLFSu63Ob NOoiHQmXlLPNhw3D0KprJ4XUWhROoBykgIowxMkFckOYsoL7pU= X-Sasl-enc: kBYnRj3tVkzV/LDUvcOHR5IHs8oRpCGhRh7mxhrpr4a2 1372538490 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id EB58568048B for ; Sat, 29 Jun 2013 16:41:30 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 3/9] main/syslinux: use more specific LINUX (instead of KERNEL) for kernels Date: Sat, 29 Jun 2013 16:41:23 -0400 Message-Id: X-Mailer: git-send-email 1.8.3.1 In-Reply-To: References: X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/syslinux/update-extlinux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/syslinux/update-extlinux b/main/syslinux/update-extlinux index e46eadf..014df1b 100755 --- a/main/syslinux/update-extlinux +++ b/main/syslinux/update-extlinux @@ -124,7 +124,7 @@ for kernel in $(find /boot -name "vmlinuz-*" -type f); do echo " MENU DEFAULT" >> $conf.new fi echo " MENU LABEL Linux $tag" >> $conf.new - echo " KERNEL $(basename $kernel)" >> $conf.new + echo " LINUX $(basename $kernel)" >> $conf.new if [ -f "/boot/initramfs-$tag" ]; then everbose "Found initramfs: /boot/initramfs-$tag" echo " INITRD initramfs-$tag" >> $conf.new -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---