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 ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id A06D7DC014D for ; Wed, 13 Mar 2013 19:47:44 +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 5C0622091E for ; Wed, 13 Mar 2013 15:47:43 -0400 (EDT) Received: from web3.nyi.mail.srv.osa ([10.202.2.213]) by compute4.internal (MEProxy); Wed, 13 Mar 2013 15:47:43 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:from:to:mime-version :content-transfer-encoding:content-type:subject:date; s=smtpout; bh=aBNvzuAZrq3kWrJpCmL7YNeWDnM=; b=CicaTMMV0Af+hhazJfz5N4hJ4PJ3 fcWlqGA+PV14dQQZCiaP7+ZFZVUVlLMHs0C8sZts2Lze+cF+Ma9aEYIvvYN0cSK6 fNf1Wiz1/x9fdFHApzRZKMcwbbHOvfylEGkkMin8qxlJ2wbcsliThztOoWqsuPKs rB1QnF9prk4ogxw= Received: by web3.nyi.mail.srv.osa (Postfix, from userid 99) id 2ED30200D43; Wed, 13 Mar 2013 15:47:43 -0400 (EDT) Message-Id: <1363204063.15699.140661203958985.0EF26A34@webmail.messagingengine.com> X-Sasl-Enc: ao6TEpTRWtiTnvivvjTJ0+D4vl+mxNMrJpbHSpZhj7Qc 1363204063 From: Dubiousjim To: alpine-devel@lists.alpinelinux.org X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - html Subject: [alpine-devel] [PATCH] mkinitfs/initramfs-init.in Date: Wed, 13 Mar 2013 15:47:43 -0400 I don't have a sendmail set up on this machine yet, so I'm copying the patch into my webmail client by hand. It's just a single word change. The problem is that a change to the mkinitfs repo on Feb 27 (f484b3e3db48123ce44666b54e2c297cac8b4fea) restricted the KOPT_ settings to a whitelist of arguments. Perhaps this was related to the recent syslinux update. Anyway, it missed one needed variable, related to the booting from encrypted volumes. Of course I got bit by this, helping me to sniff the problem down. :-) diff --git a/initramfs-init.in b/initramfs-init.in index 3c05f81..3fdae56 100755 --- a/initramfs-init.in +++ b/initramfs-init.in @@ -286,7 +286,7 @@ echo "Alpine Init $VERSION" # acpi_osi="!Windows 2006" eval set -- `cat /proc/cmdline` -myopts="alpine_dev autodetect autoraid chart cryptroot debug_init dma init_args +myopts="alpine_dev autodetect autoraid chart cryptdm cryptroot debug_init dma init_args keep_apk_new modules ovl_dev pkgs quiet root_size root usbdelay" for opt; do --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---