Compare commits
No commits in common. "f67f8b259f0ede33c30e73cd03b0cbd7f95c302f" and "84522f42fba3fa73c4c20aa903aff38afaaf54c5" have entirely different histories.
f67f8b259f
...
84522f42fb
10
includes/basecommon8.ksi
Normal file
10
includes/basecommon8.ksi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
install
|
||||||
|
keyboard us --xlayouts=us --vckeymap=us
|
||||||
|
timezone --isUtc --nontp UTC
|
||||||
|
selinux --enforcing
|
||||||
|
firewall --enabled --port=22:tcp
|
||||||
|
network --bootproto=dhcp --device=link --activate --onboot=on
|
||||||
|
services --enabled=sshd,NetworkManager,chronyd
|
||||||
|
shutdown
|
||||||
|
bootloader --location=mbr --driveorder=sda
|
||||||
|
lang en_US.UTF-8
|
16
includes/gen-packages8.ksi
Normal file
16
includes/gen-packages8.ksi
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Package setup
|
||||||
|
%packages
|
||||||
|
dracut-config-generic
|
||||||
|
kernel
|
||||||
|
kernel-core
|
||||||
|
grub2-common
|
||||||
|
grub2-efi-aa64
|
||||||
|
grub2-efi-aa64-modules
|
||||||
|
grubby
|
||||||
|
efibootmgr
|
||||||
|
shim-aa64
|
||||||
|
systemd-udev
|
||||||
|
uboot-tools
|
||||||
|
-dracut-config-rescue
|
||||||
|
|
||||||
|
%end
|
6
includes/gen-partitions8.ksi
Normal file
6
includes/gen-partitions8.ksi
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# Disk setup
|
||||||
|
clearpart --initlabel --all
|
||||||
|
part /boot/efi --asprimary --fstype=efi --size=512
|
||||||
|
part /boot --asprimary --fstype=ext4 --size=1024 --label=boot
|
||||||
|
part swap --asprimary --fstype=swap --size=512 --label=swap
|
||||||
|
part / --asprimary --fstype=ext4 --size=3072 --label=rootfs
|
45
includes/gen-postcommon8.ksi
Normal file
45
includes/gen-postcommon8.ksi
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
%post
|
||||||
|
# Setting correct yum variable to use raspberrypi kernel repo
|
||||||
|
#echo "generic" > /etc/dnf/vars/kvariant
|
||||||
|
#
|
||||||
|
# Generic efi filename for VMs
|
||||||
|
mkdir -p /boot/efi/EFI/BOOT
|
||||||
|
if [ -f /boot/efi/EFI/rocky/grubaa64.efi ];then
|
||||||
|
cp -f /boot/efi/EFI/rocky/grubaa64.efi /boot/efi/EFI/BOOT/BOOTAA64.EFI
|
||||||
|
fi
|
||||||
|
|
||||||
|
cp -f /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
|
||||||
|
cp -f /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
|
||||||
|
|
||||||
|
rpm -e dracut-config-generic
|
||||||
|
|
||||||
|
#setup dtb link by running "creating 10-devicetree.install"
|
||||||
|
if [ -x /lib/kernel/install.d/10-devicetree.install ];then
|
||||||
|
/lib/kernel/install.d/10-devicetree.install remove
|
||||||
|
fi
|
||||||
|
|
||||||
|
### Write /etc/sysconfig/kernel
|
||||||
|
cat << EOF > /etc/sysconfig/kernel
|
||||||
|
# Written by image installer
|
||||||
|
# UPDATEDEFAULT specifies if new-kernel-pkg should make new kernels the default
|
||||||
|
UPDATEDEFAULT=yes
|
||||||
|
|
||||||
|
# DEFAULTKERNEL specifies the default kernel package type
|
||||||
|
DEFAULTKERNEL=kernel-core
|
||||||
|
EOF
|
||||||
|
chmod 644 /etc/sysconfig/kernel
|
||||||
|
|
||||||
|
### Write grub defaults, turn off OS probing as it is always wrong for image creation
|
||||||
|
cat << EOF > /etc/default/grub
|
||||||
|
GRUB_TIMEOUT=5
|
||||||
|
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
|
||||||
|
GRUB_DEFAULT=saved
|
||||||
|
GRUB_DISABLE_SUBMENU=true
|
||||||
|
GRUB_TERMINAL_OUTPUT="console"
|
||||||
|
GRUB_CMDLINE_LINUX=""
|
||||||
|
GRUB_DISABLE_RECOVERY="true"
|
||||||
|
GRUB_DISABLE_OS_PROBER="true"
|
||||||
|
GRUB_ENABLE_BLSCFG="false"
|
||||||
|
EOF
|
||||||
|
chmod 644 /etc/default/grub
|
||||||
|
%end
|
1
includes/gen-reposcommon8.ksi
Normal file
1
includes/gen-reposcommon8.ksi
Normal file
@ -0,0 +1 @@
|
|||||||
|
repo --name="instKern" --baseurl=https://rockyrepos.gnulab.org/gen_aarch64_el8/ --cost=100 --install
|
9
includes/gen-rockycommon8.ksi
Normal file
9
includes/gen-rockycommon8.ksi
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
rootpw --plaintext rocky
|
||||||
|
%include includes/basecommon8.ksi
|
||||||
|
%include includes/gen-partitions8.ksi
|
||||||
|
%include includes/packages8.ksi
|
||||||
|
%include includes/gen-packages8.ksi
|
||||||
|
%include includes/precommon8.ksi
|
||||||
|
%include includes/rockyreadme8.ksi
|
||||||
|
%include includes/gen-postcommon8.ksi
|
||||||
|
%include includes/postcommon8.ksi
|
17
includes/packages8.ksi
Normal file
17
includes/packages8.ksi
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Package setup
|
||||||
|
%packages
|
||||||
|
@core
|
||||||
|
chrony
|
||||||
|
cloud-utils-growpart
|
||||||
|
net-tools
|
||||||
|
NetworkManager-wifi
|
||||||
|
nano
|
||||||
|
bash-completion
|
||||||
|
uboot-images-armv8
|
||||||
|
bcm2711-firmware
|
||||||
|
bcm2835-firmware
|
||||||
|
bcm283x-firmware
|
||||||
|
bcm283x-overlays
|
||||||
|
-java-11-*
|
||||||
|
|
||||||
|
%end
|
10
includes/postcommon8.ksi
Normal file
10
includes/postcommon8.ksi
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
%post
|
||||||
|
# Remove ifcfg-link on pre generated images
|
||||||
|
rm -f /etc/sysconfig/network-scripts/ifcfg-link
|
||||||
|
|
||||||
|
# Remove machine-id on pre generated images
|
||||||
|
rm -f /etc/machine-id
|
||||||
|
touch /etc/machine-id
|
||||||
|
|
||||||
|
%end
|
||||||
|
%include includes/rootfs-expand.ksi
|
4
includes/precommon8.ksi
Normal file
4
includes/precommon8.ksi
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
%pre
|
||||||
|
|
||||||
|
#End of Pre script for partitions
|
||||||
|
%end
|
11
includes/rockyreadme8.ksi
Normal file
11
includes/rockyreadme8.ksi
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
%post
|
||||||
|
# Mandatory README file
|
||||||
|
cat >/root/README << EOF
|
||||||
|
== Rocky Linux 8 ==
|
||||||
|
|
||||||
|
If you want to automatically resize your / partition, just type the following (as root user):
|
||||||
|
rootfs-expand
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
%end
|
6
includes/rockyrepos8.ksi
Normal file
6
includes/rockyrepos8.ksi
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# Basic setup information
|
||||||
|
url --url="https://download.rockylinux.org/pub/rocky/8/BaseOS/aarch64/os/"
|
||||||
|
# Repositories to use
|
||||||
|
repo --name="rocky8-baseos" --baseurl=https://download.rockylinux.org/pub/rocky/8/BaseOS/aarch64/os/
|
||||||
|
repo --name="rocky8-appstream" --baseurl=https://download.rockylinux.org/pub/rocky/8/AppStream/aarch64/os/
|
||||||
|
repo --name="rocky8-powertools" --baseurl=https://download.rockylinux.org/pub/rocky/8/PowerTools/aarch64/os/
|
Loading…
Reference in New Issue
Block a user