X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 8A0DEDC01FB for ; Thu, 27 Jun 2013 07:32:23 +0000 (UTC) Received: from compute4.internal (compute4.nyi.mail.srv.osa [10.202.2.44]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 2EC1520F10 for ; Thu, 27 Jun 2013 03:32:23 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute4.internal (MEProxy); Thu, 27 Jun 2013 03:32:23 -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=OFqWLEaeTNk8DDMNWLxAN11DYjbL/EIqohwJB5WRy2PxzDPZV97Sz3VIW 24atcxuILCN9W8P4sOuuFRrxPml8ebPkaenoGV9ZvPFbcItyNlFKNTevQOTTnRNu 7kOzmXmM2KhHuohTxpK1DReJ+CMM43YwnZ4zpDPsuxrjrT0Lxg= X-Sasl-enc: oSSUwwKO3rXmJPIIIOuvhpPztYTat2JgCXO88qEZsgsC 1372318342 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id EDBC568021D for ; Thu, 27 Jun 2013 03:32:22 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 3/8] main/syslinux: use more specific LINUX (instead of KERNEL) for kernels Date: Thu, 27 Jun 2013 03:32:16 -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 ---