return "ext4"
@classmethod
- def install(cls, state: "MkosiState") -> None:
+ def install(cls, state: MkosiState) -> None:
return install_arch(state)
@classmethod
@complete_step("Installing CentOS…")
- def install(cls, state: "MkosiState") -> None:
+ def install(cls, state: MkosiState) -> None:
release = int(state.config.release)
if release <= 7:
return Path("boot") / f"initrd.img-{kver}"
@classmethod
- def install(cls, state: "MkosiState") -> None:
+ def install(cls, state: MkosiState) -> None:
# Either the image builds or it fails and we restart, we don't need safety fsyncs when bootstrapping
# Add it before debootstrap, as the second stage already uses dpkg from the chroot
dpkg_io_conf = state.root / "etc/dpkg/dpkg.cfg.d/unsafe_io"
return "btrfs"
@classmethod
- def install(cls, state: "MkosiState") -> None:
+ def install(cls, state: MkosiState) -> None:
return install_fedora(state)
@classmethod
return Path(f"usr/src/linux-{name}") / kimg_path
@classmethod
- def install(cls, state: "MkosiState") -> None:
+ def install(cls, state: MkosiState) -> None:
Gentoo(state)
return "ext4"
@classmethod
- def install(cls, state: "MkosiState") -> None:
+ def install(cls, state: MkosiState) -> None:
return install_mageia(state)
@classmethod
return "ext4"
@classmethod
- def install(cls, state: "MkosiState") -> None:
+ def install(cls, state: MkosiState) -> None:
return install_openmandriva(state)
@classmethod