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 090F7DC0128 for ; Sat, 29 Jun 2013 20:41:34 +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 BE592210E1 for ; Sat, 29 Jun 2013 16:41:30 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute2.internal (MEProxy); Sat, 29 Jun 2013 16:41:30 -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=cldanwnfe10zpnXKrVXsyGIONthzceX7xoOgwriYIbssyPryduRIOtnyY YelExQ+JF1nfeLB2oQ3+5rgDp2YqhNuEigyrz/hTS2OQwF29XcbjxT7pORtQuN0f o8E5FySoDKNNf1aIpqYVCk3CkYcC9SrGthHy9Nv5R9ExwNSZ2c= X-Sasl-enc: kBYtVif5W0DI+7rJqMOHR5IHs8oRpCGhRh7mxhrpr4a2 1372538490 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id 8A9CF68048A for ; Sat, 29 Jun 2013 16:41:30 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 2/9] main/syslinux: use more specific COM32 (instead of KERNEL) for mboot.c32 Date: Sat, 29 Jun 2013 16:41:22 -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 ---