Use --force option for grub-install to support installation to PBR again.
[grml2usb.git] / TODO
1 TODOs
2 -----
3
4 * if 'grml2usb grml64.iso grml.iso' is invoked there are two identically named boot entries (both "grml")
5 * support installation of new ISO[s] additionally to already existing grml ISOs on the usb device
6   -> add "old"/already existing images automatically to bootloader configuration [thx gebi]
7 * support installation of "dupes", meaning grml2usb grml_2008.11.iso grml_2009.05.iso
8 * write bootloader configuration snippets to boot/releases/<release>/{grub.cfg,syslinux.cfg,...}
9   -> this could simplify live dramatically especially when supporting "already existing" images [thx gebi]
10 * support integration of Debian ISOs (like netboot)
11 * provide simple output being between default and --quiet [thx gebi], like:
12   # grml2usb iso1 iso2 /dev/sda1
13   installing:
14     iso1.... OK
15     iso2.... FAIL (error)
16   done.
17 * provide default entry of all installed ISOs on the top of the bootscreen
18   - done for isolinux
19   - missing in grub
20 * implement --kernel option to install specific linux26 file
21 * implement --initrd option to install specific initrd file
22 * implement --squashfs option to install specific squashfs file
23 * implement --verify option to check md5sums/sha1sums of files on usb device
24 * implement --uninstall option to remove all grml2usb files in a clean manner
25   -> implement logic for storing information about copied files (register every file in a set())
26 * implement --create-partition[s] option to generate a default partition setup
27 * implement --validate option to validate partition schema/layout: is the partition schema ok and the bootable flag set?
28 * the last line in bootsplash (boot.msg) of syslinux should mention all installed grml flavours
29   (attention, the line should NOT become too long :))
30 * code improvements:
31   - use 'with open("...", "w") as f: ... f.write("...")'
32   - use class design (like used in https://fedorahosted.org/liveusb-creator/browser/liveusb)
33 * provide a Windows version (for example via PyQt4)
34 * provide unit-testing (any ideas for useful/test-able scenarious?)
35 * provide progress bar when copying files
36 * provide graphical version; any volunteers? :)