rockedge wrote: Wed Dec 14, 2022 1:11 am
@wiak It could just be this particular machine. KLV-Airedale-rc2 boots fast from the internal HDD and from a 16 GiB usb stick drive formatted to ext4. It might be that this super cheap 8 gb usb stick formatted into 2 partitions. A small FAT32 for the bootloader and menu.lst and the rest is NTFS.
Once it is started it runs really well. It's fast and responsive and the save mechanism in RAM2 mode is working and also.
Well, my brain started working and I was able to test ntfs booting via upper_changes.ucimg savefile.
There is unfortunately a problem with KLV rc2, at least as far as my computer is concerned. It will boot and use a ucimg savefile if underlying partition is ext4, but not if it is ntfs... Made me suspect the kernel.
After a bit timeline-related detective work, I determined that the KLV version I successfully used booting using ucimg savefile was quite a while back using KLV beta19; I hadn't tried ntfs since. So I tried beta19 again, and sure enough, no problem at all booting using ucimg savefile on ntfs partition on my computer with new download/install of beta19. In a parallel frugal install on same drive I had rc2 (also a pristine new frugal install with fresh ucimg), which would not boot using identical empty ucimg savefile... So I temporarily removed rc2 versions of vmlinuz, initrd.gz (which I note is actually an xz), 00modules, and 01firmware and replaced these with the ones from beta19 and it then booted fine.
There has only been one change in skeleton initrd since beta19 and that is that simple addition of fuse module in one code line. I checked that was the only difference between the beta19 w_init and that of rc2 using diff and confirm they are otherwise identical. That leads me to the clear determination (I believe) that there is something about the kernel/modules/firmware combination used in rc2 that is not correctly mounting ntfs partition. The initrd relies on the kernel having the new ntfs3 support (since it uses mount -t ntfs3 as the code to mount the underlying ntfs partition where the ucimg is stored - that being for the case when partition format is ntfs of course. For partiton ext4 the initrd doesn't use mount -t ntfs of course... so ext4 mount of underlying frugal installs is working with ucimg in rc2 but ntfs underlying mount is not.
So, something wrong with the rc2 kernel/modules/firmware in my opinion. The kernel is above version 5.15 so ntfs3 support should be in there, but the other possible error might be fred's Thomas M utility for slimming modules that you added to the skeleton initrd - I have a feeling I mentioned something before about ntfs3 support related to that(?) - not sure, but check that too.
EDIT: Here is the post fred fixed his script to include ntfs3 support. Hope you aren't using older version of his slim modules script rockedge:
viewtopic.php?p=69909#p69909
fredx181 wrote: Thu Oct 20, 2022 5:56 pm
Update 2022-11-02, script replaced below, added ntfs3 to the kernel modules to be copied to the initrd, thanks @wiak see: viewtopic.php?p=71211#p71211
What I had found, and posted for fred's attention was:
wiak wrote: Wed Nov 02, 2022 7:30 am
NOTE WELL: On looking at newest version of Thomas's initramfs_create script I note that the version being used with KLV seems to have missed out:
Code: Select all
copy_including_deps /$LMK/kernel/fs/ntfs3
That is needed also in KLV builds since the FirstRib initrd-latest used ntfs3 module for savefiles being used with ntfs partitions.
I have one last diff check to make to ensure no other change to the skeleton initrd, which is to check the init itself (only did a diff of the beta19 and rc2 w_init files thus far, so still to double check no change in init itself, but I doubt there is any change there).
Since I don't normally use ntfs or savefiles I don't know which release last worked correctly with ntfs on my machine (but if you need to check back then start with that beta19 since successful with ntfs). So overall, I'm suspecting that ntfs3-related module missing in fred's slim utility version that you are using. An easy fix therefore!