diff --git a/Jenkinsfile b/Jenkinsfile index c4dfa10..a8b774f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ pipeline { environment { - ROOTFS_ARTIFACT = "espos-openrc-rootfs.tar.zst" + ROOTFS_ARTIFACT = "espos-openrc-gnome-rootfs.tar.zst" } diff --git a/build-rootfs.sh b/build-rootfs.sh index 42627e5..3cc9b6c 100644 --- a/build-rootfs.sh +++ b/build-rootfs.sh @@ -217,11 +217,15 @@ echo "[+] Enabling OpenRC base services" chroot "$ROOTFS" rc-update add devfs sysinit || true chroot "$ROOTFS" rc-update add procfs boot || true chroot "$ROOTFS" rc-update add sysfs boot || true +chroot "$ROOTFS" rc-update add elogind default || true +chroot "$ROOTFS" rc-update add dbus default || true +chroot "$ROOTFS" rc-update add NetworkManager default || true echo "[+] Installing Linux" chroot "$ROOTFS" apt install espos-kernel -y - +echo "[+] Installing GNOME" +chroot "$ROOTFS" apt install gnome-shell gnome-session gnome-control-center gnome-terminal nautilus mutter -y echo "[+] Cleaning"