forked from srbala/fedora-kickstarts
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
d44791744a | ||
|
2a5abd55f5 | ||
|
0f52405431 | ||
|
89fe3c8395 | ||
|
17178da61a | ||
|
fae2f44160 |
@ -11,6 +11,10 @@ fedora-release-budgie
|
|||||||
|
|
||||||
# recommended apps
|
# recommended apps
|
||||||
@budgie-desktop-apps
|
@budgie-desktop-apps
|
||||||
|
@libreoffice
|
||||||
|
libreoffice-draw
|
||||||
|
libreoffice-math
|
||||||
|
thunderbird
|
||||||
|
|
||||||
# Exclude unwanted packages from @anaconda-tools group
|
# Exclude unwanted packages from @anaconda-tools group
|
||||||
-gfs2-utils
|
-gfs2-utils
|
||||||
|
@ -34,8 +34,6 @@ firstboot --reconfig
|
|||||||
@hardware-support
|
@hardware-support
|
||||||
|
|
||||||
kernel
|
kernel
|
||||||
# on 32bit arm make sure we only install one kernel
|
|
||||||
-kernel-lpae
|
|
||||||
# remove this in %post
|
# remove this in %post
|
||||||
dracut-config-generic
|
dracut-config-generic
|
||||||
-dracut-config-rescue
|
-dracut-config-rescue
|
||||||
@ -59,18 +57,9 @@ glibc-all-langpacks
|
|||||||
|
|
||||||
# Find the architecture we are on
|
# Find the architecture we are on
|
||||||
arch=$(uname -m)
|
arch=$(uname -m)
|
||||||
|
|
||||||
# Setup Raspberry Pi firmware
|
# Setup Raspberry Pi firmware
|
||||||
if [[ $arch == "aarch64" ]] || [[ $arch == "armv7l" ]]; then
|
|
||||||
if [[ $arch == "aarch64" ]]; then
|
if [[ $arch == "aarch64" ]]; then
|
||||||
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_arm64/u-boot.bin /boot/efi/rpi-u-boot.bin
|
cp -P /usr/share/uboot/rpi_arm64/u-boot.bin /boot/efi/rpi-u-boot.bin
|
||||||
else
|
|
||||||
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/efi/rpi2-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_4_32b/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
releasever=$(rpm --eval '%{fedora}')
|
releasever=$(rpm --eval '%{fedora}')
|
||||||
@ -97,7 +86,7 @@ rm -f /var/lib/rpm/__db*
|
|||||||
# when you are using fedora via serial console as you do not get any output post grub
|
# when you are using fedora via serial console as you do not get any output post grub
|
||||||
# linux does a good job of knowing what consoles need to be enabled.
|
# linux does a good job of knowing what consoles need to be enabled.
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2022757
|
# https://bugzilla.redhat.com/show_bug.cgi?id=2022757
|
||||||
if [[ $arch == "aarch64" ]] || [[ $arch == "armv7l" ]]; then
|
if [[ $arch == "aarch64" ]]; then
|
||||||
sed -i -e 's|console=tty0||g' /boot/loader/entries/*conf
|
sed -i -e 's|console=tty0||g' /boot/loader/entries/*conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -116,11 +116,6 @@ subscription-manager-cockpit
|
|||||||
# Exclude all langpacks for now
|
# Exclude all langpacks for now
|
||||||
-langpacks-*
|
-langpacks-*
|
||||||
|
|
||||||
# The langpacks-en package is pulled in by Anaconda and it seems filtering
|
|
||||||
# it out using langpacks-* is not sufficient. It needs to be filtered
|
|
||||||
# directly.
|
|
||||||
-langpacks-en
|
|
||||||
|
|
||||||
# We are building Fedora-ELN
|
# We are building Fedora-ELN
|
||||||
fedora-release-eln
|
fedora-release-eln
|
||||||
fedora-repos-eln
|
fedora-repos-eln
|
||||||
|
@ -24,23 +24,12 @@ ostreesetup --nogpg --osname=fedora-iot --remote=fedora-iot --url=https://kojipk
|
|||||||
reboot
|
reboot
|
||||||
|
|
||||||
%post --erroronfail
|
%post --erroronfail
|
||||||
|
|
||||||
# Find the architecture we are on
|
# Find the architecture we are on
|
||||||
arch=$(uname -m)
|
arch=$(uname -m)
|
||||||
if [[ $arch == "armv7l" ]]; then
|
|
||||||
arch="armhfp"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Setup Raspberry Pi firmware
|
# Setup Raspberry Pi firmware
|
||||||
if [[ $arch == "aarch64" ]] || [[ $arch == "armhfp" ]]; then
|
|
||||||
if [[ $arch == "aarch64" ]]; then
|
if [[ $arch == "aarch64" ]]; then
|
||||||
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_arm64/u-boot.bin /boot/efi/rpi-u-boot.bin
|
cp -P /usr/share/uboot/rpi_arm64/u-boot.bin /boot/efi/rpi-u-boot.bin
|
||||||
else
|
|
||||||
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/efi/rpi2-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_4_32b/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set the origin to the "main ref", distinct from /updates/ which is where bodhi writes.
|
# Set the origin to the "main ref", distinct from /updates/ which is where bodhi writes.
|
||||||
|
@ -57,7 +57,6 @@ freecol
|
|||||||
freedoom
|
freedoom
|
||||||
freedroidrpg
|
freedroidrpg
|
||||||
frozen-bubble
|
frozen-bubble
|
||||||
gl-117
|
|
||||||
# glob2 - currently broken
|
# glob2 - currently broken
|
||||||
lincity-ng
|
lincity-ng
|
||||||
#tmw - currently broken
|
#tmw - currently broken
|
||||||
|
@ -4,7 +4,6 @@ microdnf
|
|||||||
-initial-setup-gui
|
-initial-setup-gui
|
||||||
-generic-release*
|
-generic-release*
|
||||||
-glibc-all-langpacks
|
-glibc-all-langpacks
|
||||||
-xkeyboard-config
|
|
||||||
# recommended by iproute, we don't want it in minimal
|
# recommended by iproute, we don't want it in minimal
|
||||||
-iproute-tc
|
-iproute-tc
|
||||||
# recommended by gnutls, we don't want it in minimal
|
# recommended by gnutls, we don't want it in minimal
|
||||||
|
@ -56,18 +56,9 @@ sssd-client
|
|||||||
|
|
||||||
# Find the architecture we are on
|
# Find the architecture we are on
|
||||||
arch=$(uname -m)
|
arch=$(uname -m)
|
||||||
|
|
||||||
# Setup Raspberry Pi firmware
|
# Setup Raspberry Pi firmware
|
||||||
if [[ $arch == "aarch64" ]] || [[ $arch == "armv7l" ]]; then
|
|
||||||
if [[ $arch == "aarch64" ]]; then
|
if [[ $arch == "aarch64" ]]; then
|
||||||
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_arm64/u-boot.bin /boot/efi/rpi-u-boot.bin
|
cp -P /usr/share/uboot/rpi_arm64/u-boot.bin /boot/efi/rpi-u-boot.bin
|
||||||
else
|
|
||||||
cp -P /usr/share/uboot/rpi_2/u-boot.bin /boot/efi/rpi2-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_3_32b/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
|
||||||
cp -P /usr/share/uboot/rpi_4_32b/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
releasever=$(rpm --eval '%{fedora}')
|
releasever=$(rpm --eval '%{fedora}')
|
||||||
|
@ -133,7 +133,6 @@ tmux
|
|||||||
rlwrap
|
rlwrap
|
||||||
hexchat
|
hexchat
|
||||||
fig2ps
|
fig2ps
|
||||||
bibtex2html
|
|
||||||
hevea
|
hevea
|
||||||
|
|
||||||
#Include Mozilla Firefox
|
#Include Mozilla Firefox
|
||||||
|
Loading…
Reference in New Issue
Block a user