Hey Ludo! Thanks for the review :) >> + (disk-image-installer bootloader-disk-image-installer >> + (default #f)) > > My only concern here is that we’re making an interface that’s only > implemented by one bootloader, and I fear bitrot of the other > bootloaders longer term. I guess we’ll see, this concern shouldn’t > block progress. I plan to implement it for extlinux and u-boot soon, so we should be fine. > Very smart. s/Grub/GRUB/ everywhere please. :-) Yes, thank you :) > >> +(define (root-partition-index image) >> + "Return the index of the root partition of the given IMAGE." >> + (1+ (srfi-1:list-index identity >> + (map root-partition? (image-partitions image))))) > > Isn’t it just (list-index root-partition (image-partitions image))? Of course! Mathieu