Compare commits

..
6 Commits
2 changed files with 8 additions and 3 deletions
Vendored
+1 -1
View File
@@ -4,7 +4,7 @@ pipeline {
environment {
ROOTFS_ARTIFACT = "espos-openrc-rootfs.tar.xz"
ROOTFS_ARTIFACT = "espos-openrc-rootfs.tar.zst"
}
+7 -2
View File
@@ -207,7 +207,8 @@ chroot "$ROOTFS" bash -c "
echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen
locale-gen
"
echo "[+] Installing network support..."
chroot "$ROOTFS" apt install -y network-manager dhcpcd
echo "[+] Enabling OpenRC base services"
@@ -217,6 +218,9 @@ chroot "$ROOTFS" rc-update add devfs sysinit || true
chroot "$ROOTFS" rc-update add procfs boot || true
chroot "$ROOTFS" rc-update add sysfs boot || true
echo "[+] Installing Linux"
chroot "$ROOTFS" apt install espos-kernel -y
echo "[+] Cleaning"
@@ -239,7 +243,8 @@ umount -lf "$ROOTFS/sys" || true
echo "[+] Calculando tamaño"
SIZE=$(du -sb "$ROOTFS" | cut -f1)
echo "[+] Eliminando anterior ROOTFS"
rm -rvf $OUTPUT
echo "[+] Creando rootfs comprimido"
tar \