Skip to content

Commit

Permalink
fix: remove the path used during packaging from the tarball
Browse files Browse the repository at this point in the history
  • Loading branch information
mpolitzer committed Dec 4, 2023
1 parent 0390071 commit 9489f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ $(LINUX_DIR)/vmlinux $(IMAGE) $(HEADERS) &: $(LINUX_DIR)/.config
$(MAKE) -rC $(LINUX_DIR) $(LINUX_OPTS) vmlinux Image
$(MAKE) -rC $(LINUX_DIR) $(LINUX_OPTS) headers_install \
INSTALL_HDR_PATH=$(abspath work/linux-headers)
tar --sort=name --mtime="$(KERNEL_TIMESTAMP)" --owner=1000 --group=1000 --numeric-owner -cJf $(HEADERS) $(abspath work/linux-headers)
tar --sort=name --mtime="$(KERNEL_TIMESTAMP)" --owner=1000 --group=1000 --numeric-owner -cJf $(HEADERS) -C $(abspath work/linux-headers) .
cp work/linux/arch/riscv/boot/Image $(IMAGE)
cp $(LINUX_DIR)/vmlinux $(LINUX_ELF)

Expand Down

0 comments on commit 9489f72

Please sign in to comment.