X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-pa0-f52.google.com (mail-pa0-f52.google.com [209.85.220.52]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id B489EDC009E for ; Fri, 26 Dec 2014 00:12:29 +0000 (UTC) Received: by mail-pa0-f52.google.com with SMTP id eu11so12330683pac.11 for ; Thu, 25 Dec 2014 16:12:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=USCA2OMQZDK1SXW4p+FUN45L8aSjnCOJWqf5qQ+dYsQ=; b=q299xMbnmCKylEOW21pAqCRYQEMO+VwajTnaE3MRIG7PtC0qRX7bSMTFywESP5E75Q KVOEV1Lra3Cucat5WVYZF5YHStFsWcKI1w9EwNCRrrAG3P3CBZsjDS3ZA57ZGU31R2QH HEF6L6a8mzdihffIJ5jrhnPqQU6UrPgE+rwXDd4i5ULAGFGpfbFIcDLP2TXXaEWnS8X8 E+PIp3463JyF6uwxOtWtMWsNM+RSH9vKDyITup+21GPANTIVR3iiQiAN4baG/4cJZx0Z CXwZ1TKzOuGTQqIWtknV3eyWJfMPrcaS+mXSzOIy+MYzo1PHv4PhQappD6ba8NlhdCCU dMMQ== X-Received: by 10.68.135.65 with SMTP id pq1mr63724668pbb.18.1419552748784; Thu, 25 Dec 2014 16:12:28 -0800 (PST) Received: from newbook ([50.0.224.95]) by mx.google.com with ESMTPSA id ri3sm26406140pdb.58.2014.12.25.16.12.27 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 25 Dec 2014 16:12:28 -0800 (PST) Date: Thu, 25 Dec 2014 16:12:32 -0800 From: Isaac Dunham To: Natanael Copa Cc: alpine-devel@lists.alpinelinux.org Subject: Re: [alpine-devel] busybox-1.23 in edge Message-ID: <20141226001231.GB1793@newbook> References: <20141225205835.397fac22@ncopa-laptop> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20141225205835.397fac22@ncopa-laptop> User-Agent: Mutt/1.5.23 (2014-03-12) On Thu, Dec 25, 2014 at 08:58:35PM +0100, Natanael Copa wrote: > Hi, > > I pushed busybox 1.23 to edge. So far I found at least one regression[1] > in ash and possibly another in modprobe. > > After upgrading my laptop (both new kernel and new busybox) it didn't > load the ahci kernel module from initramfs so the harddisks was not > found. I don't know if this is due to something in new busybox or in > new kernel or if it affects other hardware. > > To continue boot up from initramfs emergency shell i did something like: > > for i in $(find /sys -name uevent); do echo add > "$i"; done > lvm pvscan > lvm vgchange -a y > mount /dev/vg0/lv_root /sysroot > exit > > If someone has time and wants to investigate, you could try install > v3.1 in a vm, then upgrade to edge. (do snapshot before the upgrade). > > Please be careful if you are on edge now. > > Thanks! > > -nc It sounds like it's a bug in busybox/whatever is doing coldplug; the kernel is creating a uevent entry that corresponds to the hardware, and it still has a modalias entry in ahci.ko (or you would need to modprobe ahci manually) Or it could be the kernel creating the uevent but not the modalias file--which is a known issue with some hardware; the workaround is to use something like this: find /sys -name uevent -exec grep -h MODALIAS= '{}' + | sort -u | \ cut -c 10- |xargs modprobe -a HTH, Isaac Dunham --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---