]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
Replace references to pacstrap with pacman 972/head
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Mon, 16 May 2022 07:48:05 +0000 (09:48 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Mon, 16 May 2022 07:48:05 +0000 (09:48 +0200)
We call pacman directly these days so let's remove all references
to pacstrap.

README.md
mkosi.md
mkosi/__init__.py

index 66e9918dc56c3b8fa182b630f9e5ff63d037942b..bc4cea7be040a82b36e51e80e6fe4c45305f9039 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # mkosi — Build Bespoke OS Images
 
-A fancy wrapper around `dnf --installroot`, `debootstrap`, `pacstrap`
+A fancy wrapper around `dnf --installroot`, `debootstrap`, `pacman`
 and `zypper` that generates customized disk images with a number of
 bells and whistles.
 
index 85a416fafabc3a096871cccbb54ada1e335c2495..5e7669193ab237cba1ff48110028901e071b5ee6 100644 (file)
--- a/mkosi.md
+++ b/mkosi.md
@@ -33,7 +33,7 @@ mkosi — Build Bespoke OS Images
 # DESCRIPTION
 
 `mkosi` is a tool for easily building customized OS images. It's a
-fancy wrapper around `dnf --installroot`, `debootstrap`, `pacstrap`
+fancy wrapper around `dnf --installroot`, `debootstrap`, `pacman`
 and `zypper` that may generate disk images with a number of bells and
 whistles.
 
@@ -1297,7 +1297,7 @@ images containing any other distribution, as long as the necessary
 tools are available. Specifically, any distribution that packages
 `debootstrap` may be used to build *Debian* or *Ubuntu* images. Any
 distribution that packages `dnf` may be used to build *Fedora Linux*,
-*Mageia* or *OpenMandriva* images. Any distro that packages `pacstrap` may be used to
+*Mageia* or *OpenMandriva* images. Any distro that packages `pacman` may be used to
 build *Arch Linux* images. Any distribution that packages `zypper` may
 be used to build *openSUSE* images. Any distribution that packages
 `yum` (or the newer replacement `dnf`) may be used to build *CentOS*, *Rocky Linux*,
index 5fd820ac0020d693d3c65c42eff44f43b3e06d2f..5ab575ecffcebdcde75eaa45c76466008dd4e1bd 100644 (file)
@@ -2943,7 +2943,7 @@ def install_arch(args: MkosiArgs, root: Path, do_run_build_script: bool) -> None
 
     # Permissions on these directories are all 0o777 because of 'mount --bind'
     # limitations but pacman expects them to be 0o755 so we fix them before
-    # calling pacstrap (except /var/tmp which is 0o1777).
+    # calling pacman (except /var/tmp which is 0o1777).
     fix_permissions_dirs = {
         "boot": 0o755,
         "etc": 0o755,