Compare commits
No commits in common. "012b10f7d56d12b7125798cbed00e7f28b8ef61f" and "e5bb634cf41e5266d1a6e254f241e6c9bf2066ef" have entirely different histories.
012b10f7d5
...
e5bb634cf4
3 changed files with 3 additions and 22 deletions
|
@ -24,19 +24,7 @@ def make_image(
|
||||||
memdisk_path: str,
|
memdisk_path: str,
|
||||||
pubkey_path: str | None = None,
|
pubkey_path: str | None = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Make a binary bootable image.
|
"""Make a binary bootable image."""
|
||||||
|
|
||||||
:param image_format: output format (x86_64-efi, i386-pc, arm64-efi)
|
|
||||||
:type image_format: str
|
|
||||||
:param image_path: output file
|
|
||||||
:type image_path: str
|
|
||||||
:param modules: modules to embed
|
|
||||||
:type modules: list[str]
|
|
||||||
:param memdisk_path: archive to include
|
|
||||||
:type memdisk_path: str
|
|
||||||
:param pubkey_path: extra public key to add
|
|
||||||
:type pubkey_path: str | None
|
|
||||||
"""
|
|
||||||
args: list[str | tuple[str, ...]] = [
|
args: list[str | tuple[str, ...]] = [
|
||||||
"grub-mkimage",
|
"grub-mkimage",
|
||||||
("--compress", COMPRESSION),
|
("--compress", COMPRESSION),
|
||||||
|
|
|
@ -7,8 +7,5 @@ class Debian(OS):
|
||||||
"""Debian operating system."""
|
"""Debian operating system."""
|
||||||
|
|
||||||
def get_name(self) -> str:
|
def get_name(self) -> str:
|
||||||
"""Return name.
|
"""Return name."""
|
||||||
|
|
||||||
:rtype: str
|
|
||||||
"""
|
|
||||||
return "Debian"
|
return "Debian"
|
||||||
|
|
|
@ -9,11 +9,7 @@ class Project(Class):
|
||||||
"""Parent class for any type of project."""
|
"""Parent class for any type of project."""
|
||||||
|
|
||||||
def __init__(self, file: Path) -> None:
|
def __init__(self, file: Path) -> None:
|
||||||
"""Set file, root & name.
|
"""Set file, root & name."""
|
||||||
|
|
||||||
:param file: root reference file
|
|
||||||
:type file: Path
|
|
||||||
"""
|
|
||||||
self.raw = file
|
self.raw = file
|
||||||
self.file = self.raw.resolve()
|
self.file = self.raw.resolve()
|
||||||
self.root: Path = self.file.parent
|
self.root: Path = self.file.parent
|
||||||
|
|
Loading…
Reference in a new issue