Skip to content

Commit

Permalink
bump version numbers for v6
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanDeMeyer committed Oct 2, 2020
1 parent 2f5a25e commit 4ce6fd1
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
28 changes: 24 additions & 4 deletions man/mkosi.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\"t
.\" Automatically generated by Pandoc 2.10
.\" Automatically generated by Pandoc 2.10.1
.\"
.TH "mkosi" "1" "2016-" "" ""
.hy
Expand Down Expand Up @@ -231,6 +231,15 @@ effect: by default the verb will only remove build artifacts from a
previous run, when specified once the incremental cache files are
deleted too, and when specified twice the package cache is also removed.
.TP
\f[B]\f[CB]--gpt-first-lba\f[B]\f[R]
Override the first usable LBA (Logical Block Address) within the GPT
header.
This defaults to \f[C]2048\f[R] which is actually the desired value.
However, some tools, e.g.\ the \f[C]prl_disk_tool\f[R] utility from the
Parallels virtualization suite require this to be set to \f[C]34\f[R],
otherwise they might fail to resize the disk image and/or partitions
inside it.
.TP
\f[B]\f[CB]--bootable\f[B]\f[R], \f[B]\f[CB]-b\f[B]\f[R]
Generate a bootable image.
By default this will generate an image bootable on UEFI systems.
Expand Down Expand Up @@ -780,6 +789,13 @@ T}@T{
\f[C]BootProtocols=\f[R]
T}
T{
\f[C]--gpt-first-lba=\f[R]
T}@T{
\f[C][Output]\f[R]
T}@T{
\f[C]GPTFirstLBA=\f[R]
T}
T{
\f[C]--kernel-command-line=\f[R]
T}@T{
\f[C][Output]\f[R]
Expand Down Expand Up @@ -1265,9 +1281,13 @@ This script has network access and may be used to install packages from
other sources than the distro\[cq]s package manager (e.g.\ pip, npm,
\&...), after all software packages are installed but before the image
is cached (if incremental mode is enabled).
Note that this script is executed directly in the image context with the
final root directory in place, without any
\f[C]$SRCDIR\f[R]/\f[C]$DESTDIR\f[R] setup.
This script is executed within \f[C]$SRCDIR\f[R].
In contrast to a general purpose installation, it is safe to install
packages to the system (\f[C]pip install\f[R], \f[C]npm install -g\f[R])
instead of in \f[C]$SRCDIR\f[R] itself because the build image is only
used for a single project and can easily be thrown away and rebuilt so
there\[cq]s no risk of conflicting dependencies and no risk of polluting
the host system.
.IP \[bu] 2
\f[C]mkosi.postinst\f[R] may be an executable script.
If it exists it is invoked as the penultimate step of preparing an
Expand Down
2 changes: 1 addition & 1 deletion mkosi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
from types import FrameType


__version__ = '5'
__version__ = '6'


# These types are only generic during type checking and not at runtime, leading
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def run(self):

setup(
name="mkosi",
version="5",
version="6",
description="Create legacy-free OS images",
url="https://github.com/systemd/mkosi",
maintainer="mkosi contributors",
Expand Down

0 comments on commit 4ce6fd1

Please sign in to comment.