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 351A9DC01A5 for ; Thu, 27 Jun 2013 07:32:23 +0000 (UTC) Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id DBA7720E91 for ; Thu, 27 Jun 2013 03:32:22 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute2.internal (MEProxy); Thu, 27 Jun 2013 03:32:22 -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=FUDzPoSBuSA2hMI53PD2MNGtf wA=; b=LQOS7rWtWNG+/FvCif+9Qn15zNxBZSR8QtTMeeoF0oADApv+odbcvyIOB TV8zr6pe/AP2Io3zZmLRHQHlHAPRKUAsHHRwm1+SPkPb+m6qOsyrp9XhsDF9/lPz VXnsqC6If41Vv4XRDxFQi4x4RmErEmvi4N+JmeA4hasIBWuIv0= X-Sasl-enc: oSSMyw+JybPwKeYfOOuvhpPztYTat2JgCXO88qEZsgsC 1372318342 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id A4C57680481 for ; Thu, 27 Jun 2013 03:32:22 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 2/8] main/syslinux: use more specific COM32 (instead of KERNEL) for mboot.c32 Date: Thu, 27 Jun 2013 03:32:15 -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 2b980a9..e46eadf 100755 --- a/main/syslinux/update-extlinux +++ b/main/syslinux/update-extlinux @@ -105,7 +105,7 @@ if [ -f "/boot/xen.gz" ]; then echo " MENU DEFAULT" >> $conf.new fi echo " MENU LABEL Xen + Linux $tag" >> $conf.new - echo " KERNEL mboot.c32" >> $conf.new + echo " COM32 mboot.c32" >> $conf.new echo " APPEND xen.gz $xen_opts --- $(basename $kernel) root=$root modules=${modules}${TYPE:+,$TYPE} $default_kernel_opts --- $initramfs" >> $conf.new echo "" >> $conf.new lst=$(($lst + 1)) -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---