WDL user contributions
Attached are contributions from the filenamed contributors I received long time back (many thanks).
Note that per all current (25Aug2021) WDL build_system/utilities related code I have assigned these a licence of MIT (rather than leaving them unlicensed, which would be potentially problematic for their further development by others).
From a glance at the scripts they all seem to remain relevant to current WDL builds, and very useful.
Currently wd_rollback_changes_sfs_rufwoof, wd_merge_changes_sfs_rufwoof, and wd_remaster_fredx181.
Simply remove dummy tar and make executable with chmod +x
I had mislaid these small utilities but exploring them now. I cannot guarantee any of them (just about to further test), but all look good, nice and simple to understand, and very useful to me.
wiak
EDIT1. NOTE1 IMPORTANT: That old merge script from @rufwoof looks promising at first sight, but I think there is an issue - the char device files (which are used to indicate similar to aufs "whiteout" files) will 'vanish' in the merge. That's not correct. Unfortunately we have to find these char device files and handle them appropriately, so that merge script is attached for interest only, but will work for case of no "whiteout" marker files present in the sfs files being merged I think... (but often there will be whiteout char device files that need dealt with...). In my w_changes=RAM1 mode, I save back from upper_changes in RAM using rsync to copy back into the rw bootfrom upper_changes directory. I think it might be possible to simply mount the numbered upper_changes files and then rsync them back one by one to an empty directory in a last one wins situation - I imagine the char device files would then be appropriately preserved without my having to seek them out more manually; I will have to try this idea out though to confirm it works - no extra overlayfs used in that method.
EDIT2: hmmm... the above idea seemed to work... I started with two sfs files 50.sfs and 51.sfs. These were actual WDL upper_changes rollback files and I knew there were 'whiteout char device files' in a few places in 50.sfs. After the merge, all seemed fine; the char device whiteout files remained as I needed them to. The code I used was as follows (running from terminal at the directory where the sfs files are); to complete this I just need to put it in a script and in more general purpose form:
Code: Select all
sudo mkdir -p 51 50 merged_changes
sudo mount 51.sfs 51/
sudo mount 50.sfs 50/
sudo rsync -av --delete 51/ merged_changes
mksquashfs 51_50_changes.sfs merged_changes/
Same idea should work fine for a WDL_save_from_RAM (like snap merge) routine without needing to seek out where the char device whiteout files reside (i.e. no 'find' command seekout whiteouts seem required). I may be wrong... we will see. I will try it with w_changes=RAM2 (where media upper_changes is mounted read only at own mount point) - I will probably break my system, but that's okay - I will keep a backup!
EDIT3: Well, seems to simple, but above idea worked for me also for save back w_changes=RAM2 mode back to on media upper_changes. To explain: In RAM2 w_changes mode the on media upper_changes folder is mounted readonly as second to topmost layer, the actual topmost layer is in RAM at /mnt/layers/RAM/upper_changes. My simple save from that RAM upper_changes back to on media upper_changes is basically as simple as:
EDIT: I did have "rsync -av --delete" below but removed the --delete since that is almost certainly not correct for this purpose - might be in the above merge - I haven't checked or thought further about that as yet.
Code: Select all
sudo rsync -av /mnt/layers/RAM/upper_changes/ /mnt/sda4/WDL_arch64/upper_changes
above being for the case where I am booting from directory /mnt/sda4/WDL_arch64, so to make this method more general all I need to do is auto insert the actual boot directory used (which is a simple job indeed since /proc/cmdline contains that info after a boot). As I say, seems to simple... that single line becoming basically my save from RAM to media script... Of course I can also use --exclude along with rsync to exclude any files or dirs I don't need saved (such as various cache or maybe log files or whatever proves useful to exclude). Anywhere, surely I have missed some important detail that will render this totally simple method incorrect - someone may enlighten me, or time will tell... I have checked snapmerge script of dd-bullseye (since that using overlayfs) by @fredx181 and note it makes a list (using find) of whiteout files and uses that in the save/rsync procedure - makes me think my method must have flaws, or I may be lucky... certainly my quick test is not very rigorous so will certainly not surprise me if I have failed to take account of something regarding these whiteout (char device) files. Also I have no idea how dd-bullseye/Porteus initrd/init arranges its overlay structure so may be very different anyway.
NOTE2: I'm still working on getting WDL github public download site up to latest. Been some delays since was busy testing some details. Main additions in these later build scripts is the additional w_changes in RAM modes (which also don't have but need new user utilities to utilise their functionality - i.e. similar utilities to save2flash/snapmerge_whatever - I'm not myself planning to write these utilities in near future though but believe those used in DebianDog's dd-bullseye might work with suitable modifications), and the split init in initrd, the main part of which w_init can be stored externally as a normal (bash code extract) and thus directly edited for quick init boot experiments (so becomes yet another WDL boot plugin addition). Will get that all back running one day soonish