Makefile: Fix recipe dependencies

gentoo
Dustin 2023-02-14 00:31:26 -06:00
parent d4fdb36d45
commit e0d873bbf0
2 changed files with 2 additions and 0 deletions

View File

@ -75,6 +75,7 @@ images/firmware.img: images/sdcard.img
output/update.tar.zstd: \ output/update.tar.zstd: \
images/rootfs.squashfs \ images/rootfs.squashfs \
images/firmware.img \ images/firmware.img \
install-update.sh \
.host-tools \ .host-tools \
.prepared .prepared
./build-update.sh ./build-update.sh

View File

@ -15,6 +15,7 @@ cd linux
../linux.config ../linux.config
make -C /usr/src/linux O=${PWD} olddefconfig make -C /usr/src/linux O=${PWD} olddefconfig
make -j$(nproc) make -j$(nproc)
touch arch/arm64/boot/Image.gz
kver=$(make -s kernelversion) kver=$(make -s kernelversion)
make modules_install INSTALL_MOD_PATH=/mnt/gentoo/usr make modules_install INSTALL_MOD_PATH=/mnt/gentoo/usr
cd - cd -