Skip to content

Commit

Permalink
compile and install DTBS
Browse files Browse the repository at this point in the history
was accidentally commented out in 9c15946

Signed-off-by: Christoph Ostarek <[email protected]>
(cherry picked from commit 235a293)
  • Loading branch information
christoph-zededa authored and eriknordmark committed Oct 30, 2024
1 parent 0d2820d commit 9b8a60d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.gcc
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ RUN make O=/kernel-out ${KERNEL_CONFIG}
RUN --mount=type=cache,target=/root/.cache/ccache,id=kernel-ccache-${TARGETARCH} \
ccache -z \
&& echo "Building kernel for ${TARGETARCH} with ARCH=${ARCH} and CROSS_COMPILE=${CROSS_COMPILE}" \
&& make CC="${CROSS_COMPILE}gcc" O=/kernel-out LOCALVERSION="-${LOCALVERSION}" -j$(nproc) prepare Image modules \
&& make CC="${CROSS_COMPILE}gcc" O=/kernel-out LOCALVERSION="-${LOCALVERSION}" -j$(nproc) prepare Image modules dtbs \
&& make CC="${CROSS_COMPILE}gcc" O=/kernel-out LOCALVERSION="-${LOCALVERSION}" -j$(nproc) modules_install INSTALL_MOD_STRIP=1 \
INSTALL_MOD_PATH=/tmp/kernel-modules #\
INSTALL_MOD_PATH=/tmp/kernel-modules \
&& make CC="${CROSS_COMPILE}gcc" O=/kernel-out -j$(nproc) \
INSTALL_DTBS_PATH=/tmp/kernel-modules/boot/dtb dtbs_install && \
ccache -s | tee -a /ccache-stats.txt
Expand Down

0 comments on commit 9b8a60d

Please sign in to comment.