Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-4.15] OCPBUGS-29222: Add support for 64k pages with ARM64 #141

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ RUN if [ $(arch) = x86_64 ]; then \
kernel-rt-modules-extra${RT_KERNEL_VERSION:+-}${RT_KERNEL_VERSION}; \
fi

# 64k-pages kernel packages for aarch64
# Headers are not compiled, so there is no kernel-64k-headers packages,
# and compilation will use the headers from kernel-headers
RUN if [ $(arch) = aarch64 ]; then \
dnf -y install \
kernel-64k-devel${KERNEL_VERSION:+-}${KERNEL_VERSION} \
kernel-64k-modules${KERNEL_VERSION:+-}${KERNEL_VERSION} \
kernel-64k-modules-extra${KERNEL_VERSION:+-}${KERNEL_VERSION}; \
fi

RUN dnf -y install kernel-rpm-macros

# Additional packages that are mandatory for driver-containers
Expand Down