mirror of
https://pagure.io/fedora-kickstarts.git
synced 2025-12-10 09:00:30 +08:00
Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5dee07da68 | ||
|
|
633fcc5fd2 | ||
|
|
eac1c05fec | ||
|
|
fba0552b3b | ||
|
|
bedb225129 | ||
|
|
e0a404e380 | ||
|
|
f719964831 | ||
|
|
189421d913 | ||
|
|
fe0d1b6aa8 | ||
|
|
6fa254e43d | ||
|
|
da0e8fc819 |
@@ -6,8 +6,7 @@
|
||||
fedora-release-designsuite
|
||||
|
||||
# Provides backup application
|
||||
deja-dup
|
||||
#deja-dup-nautilus
|
||||
#deja-dup
|
||||
|
||||
# Add extra gnome applications
|
||||
#gnome-books
|
||||
|
||||
@@ -7,7 +7,5 @@ autopart --type=btrfs --noswap
|
||||
%packages
|
||||
-initial-setup
|
||||
-initial-setup-gui
|
||||
gnome-initial-setup
|
||||
anaconda-webui
|
||||
|
||||
%end
|
||||
|
||||
@@ -19,7 +19,7 @@ autopart --nohome --noswap --type=plain
|
||||
|
||||
# Equivalent of %include fedora-repo.ks
|
||||
# Pull from the ostree repo that was created during the compose
|
||||
ostreesetup --nogpg --osname=fedora-iot --remote=fedora-iot --url=https://kojipkgs.fedoraproject.org/compose/iot/repo/ --ref=fedora/rawhide/${basearch}/iot
|
||||
ostreesetup --nogpg --osname=fedora-iot --remote=fedora-iot --url=https://kojipkgs.fedoraproject.org/compose/iot/repo/ --ref=fedora/41/${basearch}/iot
|
||||
|
||||
reboot
|
||||
|
||||
@@ -34,14 +34,14 @@ fi
|
||||
|
||||
# Set the origin to the "main ref", distinct from /updates/ which is where bodhi writes.
|
||||
# We want consumers of this image to track the two week releases.
|
||||
ostree admin set-origin --index 0 fedora-iot https://dl.fedoraproject.org/iot/repo/ "fedora/rawhide/${arch}/iot"
|
||||
ostree admin set-origin --index 0 fedora-iot https://dl.fedoraproject.org/iot/repo/ "fedora/41/${arch}/iot"
|
||||
|
||||
# Make sure the ref we're supposedly sitting on (according
|
||||
# to the updated origin) exists.
|
||||
ostree refs "fedora-iot:fedora/rawhide/${arch}/iot" --create "fedora-iot:fedora/rawhide/${arch}/iot"
|
||||
ostree refs "fedora-iot:fedora/41/${arch}/iot" --create "fedora-iot:fedora/41/${arch}/iot"
|
||||
|
||||
# Remove the old ref so that the commit eventually gets cleaned up.
|
||||
ostree refs "fedora-iot:fedora/rawhide/${arch}/iot" --delete
|
||||
ostree refs "fedora-iot:fedora/41/${arch}/iot" --delete
|
||||
|
||||
# delete/add the remote with new options to enable gpg verification
|
||||
# and to point them at the cdn url
|
||||
|
||||
@@ -22,6 +22,9 @@ fedora-release-kde
|
||||
-tracker-miners
|
||||
-tracker
|
||||
|
||||
# Not needed on desktops. See: https://pagure.io/fedora-kde/SIG/issue/566
|
||||
-mariadb-server-utils
|
||||
|
||||
### The KDE-Desktop
|
||||
|
||||
# fedora-specific packages
|
||||
|
||||
@@ -33,7 +33,7 @@ part / --size 16000
|
||||
astrometry
|
||||
astrometry-tycho2
|
||||
cdsclient
|
||||
fpack
|
||||
cfitsio-utils
|
||||
psfex
|
||||
scamp
|
||||
sextractor
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
%include fedora-live-kde.ks
|
||||
|
||||
# DVD size partition
|
||||
part / --size 10240 --fstype ext4
|
||||
part / --size 11264 --fstype ext4
|
||||
|
||||
#enable threaded irqs
|
||||
bootloader --append="threadirqs"
|
||||
|
||||
@@ -10,6 +10,9 @@
|
||||
%include fedora-live-minimization.ks
|
||||
%include fedora-lxde-common.ks
|
||||
|
||||
# increate the disk size for compose
|
||||
part / --size 6144
|
||||
|
||||
%post
|
||||
# LXDE and LXDM configuration
|
||||
|
||||
|
||||
30
fedora-live-miraclewm.ks
Normal file
30
fedora-live-miraclewm.ks
Normal file
@@ -0,0 +1,30 @@
|
||||
# fedora-livecd-miraclewm.ks
|
||||
#
|
||||
# Description:
|
||||
# - Fedora Live Spin with the tiling window manager Miracle
|
||||
#
|
||||
# Maintainer(s):
|
||||
# - Matthew Kosarek <mattkae@fedoraproject.org>
|
||||
# - Neal Gompa <ngompa@fedoraproject.org>
|
||||
|
||||
%include fedora-live-base.ks
|
||||
%include fedora-live-minimization.ks
|
||||
%include fedora-miraclewm-common.ks
|
||||
|
||||
%packages
|
||||
# To be able to show installation instructions on background
|
||||
nwg-wrapper
|
||||
%end
|
||||
|
||||
%post
|
||||
# create /etc/sysconfig/desktop (needed for installation)
|
||||
cat > /etc/sysconfig/desktop <<EOF
|
||||
PREFERRED=/usr/bin/miraclewm
|
||||
DISPLAYMANAGER=/bin/sddm
|
||||
EOF
|
||||
|
||||
# set livesys session type
|
||||
sed -i 's/^livesys_session=.*/livesys_session="miraclewm"/' /etc/sysconfig/livesys
|
||||
|
||||
%end
|
||||
|
||||
@@ -10,12 +10,7 @@
|
||||
#
|
||||
#include snippets/packagekit-cached-metadata.ks
|
||||
|
||||
part / --size 8192
|
||||
|
||||
%packages
|
||||
gnome-initial-setup
|
||||
anaconda-webui
|
||||
%end
|
||||
part / --size 8576
|
||||
|
||||
%post
|
||||
|
||||
|
||||
15
fedora-miraclewm-common.ks
Normal file
15
fedora-miraclewm-common.ks
Normal file
@@ -0,0 +1,15 @@
|
||||
# fedora-livecd-miraclewm.ks
|
||||
#
|
||||
# Description:
|
||||
# - Fedora Live Spin with the tiling window manager Miracle
|
||||
#
|
||||
# Maintainer(s):
|
||||
# - Matthew Kosarek <mattkae@fedoraproject.org>
|
||||
# - Neal Gompa <ngompa@fedoraproject.org>
|
||||
|
||||
%packages
|
||||
fedora-release-miraclewm
|
||||
@^miraclewm-desktop-environment
|
||||
@firefox
|
||||
initial-setup-gui-wayland-miraclewm
|
||||
%end
|
||||
@@ -32,6 +32,7 @@ wget2-wget
|
||||
-python3.11
|
||||
-python3.12
|
||||
-pypy
|
||||
-pypy3.9
|
||||
|
||||
# Remove LaTeX, see https://bugzilla.redhat.com/show_bug.cgi?id=1862450
|
||||
# and https://bugzilla.redhat.com/show_bug.cgi?id=1902354
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
# Exactly one of the following should be uncommented
|
||||
|
||||
# For the master branch the following should be uncommented
|
||||
%include fedora-repo-rawhide.ks
|
||||
# %include fedora-repo-rawhide.ks
|
||||
|
||||
# For non-master branches the following should be uncommented
|
||||
# %include fedora-repo-not-rawhide.ks
|
||||
%include fedora-repo-not-rawhide.ks
|
||||
|
||||
@@ -12,4 +12,7 @@
|
||||
-gfs2-utils
|
||||
-reiserfs-utils
|
||||
|
||||
# Exclude extra unwanted packages
|
||||
-python3-botocore
|
||||
|
||||
%end
|
||||
|
||||
@@ -90,6 +90,10 @@ maintainers = [ "Joshua Strobl" ]
|
||||
fas = [ "alebastr", "jkonecny", "anthr76", "fale" ]
|
||||
maintainers = [ "Aleksei Bavshin", "Jiří Konečný", "Anthony Rabbito", "Fabio Alessandro Locati" ]
|
||||
|
||||
[spins.miraclewm.x86_64]
|
||||
fas = [ "mattkae", "ngompa" ]
|
||||
maintainers = [ "Matthew Kosarek", "Neal Gompa" ]
|
||||
|
||||
[silverblue.x86_64]
|
||||
fas = [ "siosm", "tpopela" ]
|
||||
maintainers = [ "Timothée Ravier", "Tomáš Popela" ]
|
||||
|
||||
Reference in New Issue
Block a user