Skip to content

Commit

Permalink
build: add a kernel build-with-warnings target
Browse files Browse the repository at this point in the history
  • Loading branch information
choppsv1 committed Mar 6, 2024
1 parent a8ea216 commit 31bc868
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ setup:
([ -d linux ] || [ -h linux ]) || git clone $(DEPTH) https://github.com/LabNConsulting/iptfs-linux.git linux -b iptfs

kernel: output-linux/arch/x86/boot/bzImage

kernel-warn: output-linux/arch/x86/boot/bzImage
mkdir -p output-linux
make -C linux -j$(shell nproc) V=1 C=1 W=1 O=../output-linux LOCALVERSION='' 2>&1 | tee warn-log.txt

# kernel: linux/arch/x86/boot/bzImage

rootfs: output-buildroot/images/rootfs.cpio.gz
Expand Down

0 comments on commit 31bc868

Please sign in to comment.