Fedora Build ACS ACS Override Patch Kernel
Add RPM Fusion
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
Install the dependencies to start building your own kernel.
sudo dnf install fedpkg fedora-packager rpmdevtools ncurses-devel pesign fedora-packager fedora-review
Set up your home build directory (if you haven't ever built any RPMs before)
rpmdev-setuptree
Install the kernel source and finish installing dependencies.
koji download-build --arch=src kernel-4.18.5-200.fc28
rpm -Uvh kernel-4.18.5-200.fc28.src.rpm
vim ~/rpmbuild/SPECS/kernel.spec
Add the two lines near the top of the spec file.
# Set buildid
%define buildid .acs# ACS override patch
Patch1000: add-acs-override.patch
Compile! This takes a long time.
rpmbuild -bb ~/rpmbuild/SPECS/kernel.spec
Install the new packages!
cd ~/rpmbuild/RPMS/x86_64
sudo dnf update *.rpm