mirror of
https://github.com/apple/container.git
synced 2026-09-13 03:05:42 +00:00
Fixes #296 Today the kernel subdirectory is somewhat useless. The dockerfile we had tried to use an image that isn't actually on ghcr, so everything would kind of just crap out. This change swaps things so that we build a local image that has all the bits needed to compile the kernel, and then uses that image to build the resulting kernel and plop it in the current working directory. This change does add a reliance on `container` being installed however, but for folks that need to build a custom kernel this doesn't seem like too much of an issue to me.
28 lines
898 B
Bash
Executable File
28 lines
898 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright © 2025 Apple Inc. and the Containerization project authors. All rights reserved.
|
|
#
|
|
# 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
|
|
#
|
|
# https://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.
|
|
|
|
set -e
|
|
|
|
mkdir -p /kbuild
|
|
tar -xf /kernel/source.tar.xz -C /kbuild --strip-components=1
|
|
cp /kernel/config-arm64 /kbuild/.config
|
|
|
|
(
|
|
cd /kbuild
|
|
make olddefconfig && \
|
|
make -j$((`nproc`-1)) && \
|
|
cp arch/arm64/boot/Image /kernel/vmlinux
|
|
)
|