here ya go
This commit is contained in:
parent
36556227aa
commit
8efd777a4b
@ -17,18 +17,19 @@ shim-aa64
|
|||||||
systemd-udev
|
systemd-udev
|
||||||
|
|
||||||
# Packages from SIG/AltArch
|
# Packages from SIG/AltArch
|
||||||
uboot-tools
|
#uboot-tools
|
||||||
uboot-images-armv8
|
#uboot-images-armv8
|
||||||
# Raspberry Pi firmware
|
# Raspberry Pi firmware
|
||||||
bcm283x-firmware # this will pull in other RPi related firmware ;)
|
#bcm283x-firmware # this will pull in other RPi related firmware ;)
|
||||||
# Raspberry Pi overlays
|
# Raspberry Pi overlays
|
||||||
bcm283x-overlays
|
#bcm283x-overlays
|
||||||
|
|
||||||
# Kernel selection
|
# Kernel selection
|
||||||
## mainline (the latest "stable" release from kernel.org)
|
## mainline (the latest "stable" release from kernel.org)
|
||||||
kernel-ml # TODO: change this to whatever <sig-kernel> ends up using
|
#kernel-ml # TODO: change this to whatever <sig-kernel> ends up using
|
||||||
## LTS (the latest "longterm" release from kernel.org)
|
## LTS (the latest "longterm" release from kernel.org)
|
||||||
#kernel-lt # TODO: change this to whatever <sig-kernel> ends up using
|
#kernel-lt # TODO: change this to whatever <sig-kernel> ends up using
|
||||||
|
kernel-opi5
|
||||||
|
|
||||||
# Other packages
|
# Other packages
|
||||||
bash-completion
|
bash-completion
|
||||||
|
@ -5,6 +5,11 @@
|
|||||||
# Setup networking temporarily
|
# Setup networking temporarily
|
||||||
[ -f /etc/resolv.conf ] || echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
[ -f /etc/resolv.conf ] || echo "nameserver 1.1.1.1" > /etc/resolv.conf
|
||||||
|
|
||||||
|
# Orange Pi 5 stuff
|
||||||
|
curl 'https://git.rockylinux.org/thefossguy/opi5-boot/-/raw/r9/boot.cmd' --output /boot/boot.cmd
|
||||||
|
curl 'https://git.rockylinux.org/thefossguy/opi5-boot/-/raw/r9/boot.scr' --output /boot/boot.scr
|
||||||
|
curl 'https://git.rockylinux.org/thefossguy/opi5-boot/-/raw/r9/orangepiEnv.txt' --output /boot/orangepiEnv.txt
|
||||||
|
|
||||||
# The script that expands root partition
|
# The script that expands root partition
|
||||||
[ -d /usr/local/bin ] || mkdir --verbose /usr/local/bin
|
[ -d /usr/local/bin ] || mkdir --verbose /usr/local/bin
|
||||||
curl 'https://git.resf.org/thefossguy/rocky-linux-generic-images/raw/branch/r9/scripts/expand-rootfs.sh' --output /usr/local/bin/expand-rootfs.sh
|
curl 'https://git.resf.org/thefossguy/rocky-linux-generic-images/raw/branch/r9/scripts/expand-rootfs.sh' --output /usr/local/bin/expand-rootfs.sh
|
||||||
|
@ -5,22 +5,22 @@ url --url=https://download.rockylinux.org/pub/rocky/9/BaseOS/aarch64/os
|
|||||||
# the 'kernel-*' packages are disabled from these "default" repositories
|
# the 'kernel-*' packages are disabled from these "default" repositories
|
||||||
# because we will use either the LTS kernel or the latest mainline kernel
|
# because we will use either the LTS kernel or the latest mainline kernel
|
||||||
# from the '<sig-kernel>' repo
|
# from the '<sig-kernel>' repo
|
||||||
repo --install --name=AppStream --mirrorlist=https://mirrors.rockylinux.org/mirrorlist?repo=AppStream-9&arch=aarch64
|
repo --install --name=AppStream --baseurl=https://download.rockylinux.org/pub/rocky/9/AppStream/aarch64/os
|
||||||
repo --install --name=BaseOS --mirrorlist=https://mirrors.rockylinux.org/mirrorlist?repo=BaseOS-9&arch=aarch64
|
repo --install --name=BaseOS --baseurl=https://download.rockylinux.org/pub/rocky/9/BaseOS/aarch64/os
|
||||||
repo --install --name=CRB --mirrorlist=https://mirrors.rockylinux.org/mirrorlist?repo=CRB-9&arch=aarch64
|
repo --install --name=CRB --baseurl=https://download.rockylinux.org/pub/rocky/9/CRB/aarch64/os
|
||||||
|
|
||||||
# Enable EPEL
|
# Enable EPEL
|
||||||
# TODO: disable this
|
# TODO: disable this
|
||||||
repo --install --name=EPEL --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=epel-9&arch=aarch64
|
repo --install --name=EPEL --baseurl=https://dl.fedoraproject.org/pub/epel/9/Everything/aarch64/
|
||||||
|
|
||||||
# Enable the Kernel ELRepo for the mainline kernel
|
# Enable the Kernel ELRepo for the mainline kernel
|
||||||
# TODO: disable this after <sig-kernel> is ready
|
# TODO: disable this after <sig-kernel> is ready
|
||||||
repo --install --name=ELRepo --mirrorlist=http://mirrors.elrepo.org/mirrors-elrepo.el9
|
#repo --install --name=ELRepo --mirrorlist=http://mirrors.elrepo.org/mirrors-elrepo.el9
|
||||||
repo --install --name=ELRepo-Kernel --mirrorlist=http://mirrors.elrepo.org/mirrors-elrepo-kernel.el9
|
#repo --install --name=ELRepo-Kernel --mirrorlist=http://mirrors.elrepo.org/mirrors-elrepo-kernel.el9
|
||||||
|
|
||||||
# Temporarily enable my COPR for SIG/AltArch stuff
|
# Temporarily enable my COPR for SIG/AltArch stuff
|
||||||
# TODO: disable this
|
# TODO: disable this
|
||||||
repo --install --name=COPR-thefossguy --baseurl=https://download.copr.fedorainfracloud.org/results/prathampatel/epel-carryover/epel-9-aarch64
|
repo --install --name=SIG-AltArch-OPI5 --baseurl=https://download.copr.fedorainfracloud.org/results/prathampatel/rocky-9-sig-altarch/rhel-9-aarch64/
|
||||||
|
|
||||||
# Enable Sherif's repo (contains all the necessary firmware + uboot stuff)
|
# Enable Sherif's repo (contains all the necessary firmware + uboot stuff)
|
||||||
# TODO: disable this after <sig-altarch> is ready
|
# TODO: disable this after <sig-altarch> is ready
|
||||||
|
Loading…
Reference in New Issue
Block a user