Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--PKGBUILD2
-rw-r--r--archinstall/lib/installer.py1
-rwxr-xr-xmake.sh8
-rw-r--r--setup.py2
4 files changed, 7 insertions, 6 deletions
diff --git a/PKGBUILD b/PKGBUILD
index d54e0dc3..801c2b8d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Anton Hvornum anton@hvornum.se
# Contributor: Anton Hvornum anton@hvornum.se
pkgname="archinstall"
-pkgver="v2.0.4rc3"
+pkgver="v2.0.4rc4"
pkgdesc="Installs a pre-built binary of ${pkgname}"
pkgrel=1
url="https://github.com/Torxed/archinstall"
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index ea9a605a..a6fafb03 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -92,6 +92,7 @@ class Installer():
return True
def activate_ntp(self):
+ log(f'Adding bootloader to {self.boot_partition}')
if self.pacstrap('ntp'):
if self.enable_service('ntpd'):
return True
diff --git a/make.sh b/make.sh
index e369209a..46d2d00d 100755
--- a/make.sh
+++ b/make.sh
@@ -1,15 +1,15 @@
#!/bin/bash
# Description: Crude build/maker script for PKGBUILD dependencies and stuff.
-rm -rf archinstall.egg-info/ build/ src/ pkg/ dist/ archinstall.build/ archinstall-v2.0.4rc3-x86_64/ *.pkg.*.xz archinstall-*.tar.gz
+rm -rf archinstall.egg-info/ build/ src/ pkg/ dist/ archinstall.build/ archinstall-v2.0.4rc4-x86_64/ *.pkg.*.xz archinstall-*.tar.gz
nuitka3 --standalone --show-progress archinstall
cp -r examples/ archinstall.dist/
-mv archinstall.dist archinstall-v2.0.4rc3-x86_64
-tar -czvf archinstall-v2.0.4rc3.tar.gz archinstall-v2.0.4rc3-x86_64
+mv archinstall.dist archinstall-v2.0.4rc4-x86_64
+tar -czvf archinstall-v2.0.4rc4.tar.gz archinstall-v2.0.4rc4-x86_64
makepkg -f
python3 setup.py sdist bdist_wheel
echo 'python3 -m twine upload dist/*; rm -rf dist/'
-rm -rf archinstall.egg-info/ build/ src/ pkg/ archinstall.build/ archinstall-v2.0.4rc3-x86_64/
+rm -rf archinstall.egg-info/ build/ src/ pkg/ archinstall.build/ archinstall-v2.0.4rc4-x86_64/
diff --git a/setup.py b/setup.py
index 5c77be17..6512bd8c 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="archinstall",
- version="v2.0.4rc3",
+ version="v2.0.4rc4",
author="Anton Hvornum",
author_email="anton@hvornum.se",
description="Arch Linux installer - guided, templates etc.",