45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
|
# Kickstart to build Rocky 8 image for Raspberry Pi 4 hardware (aarch64)
|
||
|
#
|
||
|
|
||
|
# (pull from pgreco: https://github.com/psgreco/sig-core-AltArch/tree/master/image_build
|
||
|
|
||
|
|
||
|
# Basic setup information
|
||
|
%include "Rocky8_Rpi4/010_repos_aarch64.ksi"
|
||
|
%include "Rocky8_Rpi4/020_common.ksi"
|
||
|
%include "Rocky8_Rpi4/040_packages.ksi"
|
||
|
|
||
|
#%include "../ks.include/common.ksi"
|
||
|
#%include "../ks.include/RaspberryPI.ksi"
|
||
|
#%include "../ks.include/wifi.ksi"
|
||
|
#%include "../ks.include/pkgs_common_7.ksi"
|
||
|
#%include "../ks.include/pkgs_exclude_7.ksi"
|
||
|
|
||
|
# Repositories to use
|
||
|
#repo --name="instKern" --baseurl=http://mirror.centos.org/altarch/7/kernel/armhfp/kernel-rpi2/ --cost=100
|
||
|
|
||
|
|
||
|
# Disk setup
|
||
|
clearpart --initlabel --all
|
||
|
part /boot --asprimary --fstype=vfat --size=300 --label=boot
|
||
|
part swap --asprimary --fstype=swap --size=512 --label=swap
|
||
|
part / --asprimary --fstype=ext4 --size=2800 --label=rootfs
|
||
|
|
||
|
# Package setup
|
||
|
%packages
|
||
|
#raspberrypi-vc-utils
|
||
|
raspberrypi2-firmware
|
||
|
raspberrypi2-kernel4
|
||
|
|
||
|
%end
|
||
|
|
||
|
%post
|
||
|
# Generating initrd
|
||
|
#export kvr=$(rpm -q --queryformat '%{version}-%{release}' $(rpm -q raspberrypi2-kernel4|tail -n 1))
|
||
|
#dracut --force /boot/initramfs-$kvr.armv7hl.img $kvr.armv7hl
|
||
|
|
||
|
# Ensure no ssh keys are present
|
||
|
rm -f /etc/ssh/*_key*
|
||
|
|
||
|
%end
|