Received: from ncopa-desktop (unknown [IPv6:2001:4646:fb05:0:165:e822:1826:874c]) (Authenticated sender: ncopa@alpinelinux.org) by gbr-app-1.alpinelinux.org (Postfix) with ESMTPSA id 8FABE2241E2; Fri, 6 Sep 2024 12:16:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=alpinelinux.org; s=smtp; t=1725624966; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=i+xC85CHaaVb8ZBtP9cZqKH19Co6eiTb+ARTUN1X9tE=; b=WYyZr0gUbLwe6J2gemaXHEOLEp9XIzU0T/rsGMue4GP7ndhSmzKE6sNYdMk0eHQioXcSrJ RxRBEQvcBSRNc+3tSKGRSKd5rvFSp74wIggKJBcclNihiScBAxZs8msCPUNowSnMD6QNfV LL6EW6bb8GOTMtub94LvASCpsyCsxmM= Date: Fri, 6 Sep 2024 14:16:02 +0200 From: Natanael Copa To: Evan J Cc: ~alpine/users@lists.alpinelinux.org Subject: Re: Alpine Linux on UFS Drive Message-ID: <20240906141602.3b1aa6c9@ncopa-desktop> In-Reply-To: References: X-Mailer: Claws Mail 4.3.0 (GTK 3.24.43; x86_64-alpine-linux-musl) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Thu, 5 Sep 2024 09:37:39 -0400 Evan J wrote: > Hi Everyone, > > I hope all is well! > > I've spun up a VM of Alpine Linux and so far I'm loving it! It's a breath > of fresh air to run a slim flavour of Linux! > > That being said, I'm trying to install it onto a Minisforum S100 to act as > a small server. However, I'm running into issues with the UFS storage on > this device. The install will work fine, however, the server will fail to > mount the root partition and fail into the emergency shell. I have > exhausted my search with my Google-fu. > > Does anyone have any tips on how I can get this to work with a UFS boot > device? > You probably need to make sure that the drivers for UFS are included in the initramfs. Look for the drivers in /etc/mkinitfs/features.d/ If there are no mkinitfs "feature" with those (I doubt there are), create a /etc/mkinitfs/features.d/ufs.modules. My guess is that is should look something like this: kernel/drivers/ufs kernel/fs/ufs Then add "ufs" to features in /etc/mkinitfs/mkinitfs.conf and re-run the trigger. Or even better, create an issue on https://gitlab.alpinelinux.org/alpine/mkinitfs and I'll add the "ufs" feature when I get time. Thanks! -nc