-
Notifications
You must be signed in to change notification settings - Fork 495
[linux headers] Update build to support >= 6.3 kernels. Add 6.6 headers to fix ARM Container OS issue #2036
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
Merged
ddelnano
merged 10 commits into
pixie-io:main
from
ddelnano:ddelnano/add-newer-linux-kernel-headers
May 15, 2025
Merged
Changes from 6 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
b686930
Update linux_headers_image to support >= 6.3 kernels. Add additional …
ddelnano 32f291c
Ensure pre 6.3 dockerfile remains the same as before
ddelnano ae1e7dd
Fix version detection for kernesl < 6 and fix arm64 builds
ddelnano afc24b0
Update comment to reflect current header sizes
ddelnano b5a84ff
Bump linux kernel minor versions. Add 6.6.x kernel to fix issues with…
ddelnano f485f95
Adjust comment for latest selection of headers
ddelnano 50103d2
Use latest image shas, apply DEBIAN_FRONTEND=noninteractive to all co…
ddelnano 6be9029
Update comment to reflect difference from previous build process
ddelnano d104cab
Use build arg to specify base image for linux_headers_image to avoid …
ddelnano 925f5f2
Consolidate Makefile logic to arch agonstic target. Remove unnecessar…
ddelnano File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,78 @@ | ||
| # Copyright 2018- The Pixie Authors. | ||
|
ddelnano marked this conversation as resolved.
Outdated
|
||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| FROM ubuntu:18.04@sha256:8aa9c2798215f99544d1ce7439ea9c3a6dfd82de607da1cec3a8a2fae005931b | ||
|
ddelnano marked this conversation as resolved.
Outdated
|
||
|
|
||
| # Install required packages | ||
| RUN apt-get update | ||
| RUN apt-get upgrade -y -q | ||
| RUN apt-get install -y -q build-essential \ | ||
| bc \ | ||
| libelf-dev \ | ||
| libssl-dev \ | ||
| flex \ | ||
| bison \ | ||
| kmod \ | ||
| cpio \ | ||
| rsync \ | ||
| wget \ | ||
| binutils-aarch64-linux-gnu \ | ||
| gcc-aarch64-linux-gnu \ | ||
| dwarves \ | ||
| python3 | ||
|
|
||
| ARG KERN_VERSION | ||
|
|
||
| # Download Linux sources | ||
| WORKDIR /px/src | ||
| RUN KERN_MAJ="$(echo "${KERN_VERSION}" | cut -d'.' -f1)"; \ | ||
| wget -nv http://mirrors.edge.kernel.org/pub/linux/kernel/v${KERN_MAJ}.x/linux-${KERN_VERSION}.tar.gz | ||
| RUN tar zxf linux-${KERN_VERSION}.tar.gz | ||
|
|
||
| WORKDIR /configs | ||
| ADD x86_64_config /configs/x86_64 | ||
| ADD arm64_config /configs/arm64 | ||
|
|
||
| ARG ARCH | ||
| ARG CROSS_COMPILE | ||
|
|
||
| # Build Linux kernel | ||
| WORKDIR /px/src/linux-${KERN_VERSION} | ||
| RUN cp /configs/${ARCH} .config | ||
| RUN make ARCH=${ARCH} olddefconfig | ||
| RUN make ARCH=${ARCH} clean | ||
| RUN make ARCH=${ARCH} -j $(nproc) deb-pkg LOCALVERSION=-pl | ||
|
|
||
| # Extract headers into a tarball | ||
| WORKDIR /px | ||
| RUN DEB_ARCH=$(echo ${ARCH} | sed 's/x86_64/amd64/g'); dpkg -x src/linux-headers-${KERN_VERSION}-pl_${KERN_VERSION}-pl-1_${DEB_ARCH}.deb . | ||
|
|
||
| # Remove broken symlinks | ||
| RUN find usr/src/linux-headers-${KERN_VERSION}-pl -xtype l -exec rm {} + | ||
|
|
||
| # Remove uneeded files to reduce size | ||
| # Keep only: | ||
| # - usr/src/linux-headers-x.x.x-pl/include | ||
| # - usr/src/linux-headers-x.x.x-pl/arch/${ARCH} | ||
| # This reduces the size by a little over 2x. | ||
| RUN rm -rf usr/share | ||
| RUN find usr/src/linux-headers-${KERN_VERSION}-pl -maxdepth 1 -mindepth 1 ! -name include ! -name arch -type d \ | ||
| -exec rm -rf {} + | ||
| RUN find usr/src/linux-headers-${KERN_VERSION}-pl/arch -maxdepth 1 -mindepth 1 ! -name $(echo ${ARCH} | sed 's/x86_64/x86/g') -type d -exec rm -rf {} + | ||
| RUN tar zcf linux-headers-${ARCH}-${KERN_VERSION}.tar.gz usr | ||
|
|
||
| VOLUME /output | ||
| CMD ["sh", "-c", "cp linux-headers-*.tar.gz /output/"] | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.