Results 83 comments of mikhailnov

Are there any guidelines how to format comments in code? Not sure that my comments follow the required style.

``` /etc/dracut.conf.d/99-liveos.conf:filesystems+="vfat msdos isofs ext4 xfs btrfs squashfs " /etc/dracut.conf.d/99-liveos.conf:add_drivers+="sr_mod sd_mod ide-cd cdrom =ata sym53c8xx aic7xxx ehci_hcd uhci_hcd ohci_hcd usb_storage usbhid uas firewire-sbp2 firewire-ohci sbp2 ohci1394 ieee1394 mmc_block sdhci sdhci-pci...

If I just patch them out of the list, then, if another kernel which is built differently is used, there may be problems. For now I've worked it around by...

System dracut config can be used + force not host only + add some modules. It is how it worked in Rosa for ages with older versions if livecd-scripts. I...

Can we chain-load grub from syslinux by simplifying syslinux config to just instruction to load grub? Will it work?

It is implemented in ROSA 2021.1, all isos of e.g. ROSA 12.2 http://mirror.rosalab.ru/rosa/rosa2021.1/iso/ROSA.FRESH.12/ use this implementation https://abf.io/import/livecd-tools/blob/a8db33247da71ee9390d97376da47e89265d4b25/grub2-everywhere.diff Unfortunately it is not upstreamable because upstream hardcodes some values for Fedora, but...

..after the %post above was run, livecd-tools gave an error: ``` /etc/selinux/targeted/contexts/files/file_contexts: No such file or directory Error creating Live CD : SELinux relabel failed. ``` selinux-policy and /etc/selinux/config are...

Forgot to write. I am 100% sure that it does work without labelling from host because I used to `sed -i -e 's,/sbin/setfiles,/bin/true,g'` in old livecd-tools to avoid this labelling.

I have worked around it: ```diff --- imgcreate/creator.py | 3 +++ imgcreate/kickstart.py | 2 ++ 2 files changed, 5 insertions(+) diff --git a/imgcreate/creator.py b/imgcreate/creator.py index 692d287..a6d7ef6 100644 --- a/imgcreate/creator.py +++...

Why is it needed to relabel from host instead of chroot?