We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03aa461 commit d7e891cCopy full SHA for d7e891c
Makefile
@@ -25,6 +25,8 @@ image-bootloaders: \
25
bootloaders/sopine_baseboard-uboot.bin \
26
u-boot-sopine-flash-spi.img.xz \
27
u-boot-sopine-erase-spi.img.xz \
28
+ u-boot-pine64_plus-boot.img.xz \
29
+ u-boot-sopine_baseboard-boot.img.xz
30
31
.PHONY: versions
32
versions:
Makefile.blobs.mk
@@ -15,3 +15,8 @@ u-boot-sopine-%.img: tmp/u-boot-sopine_baseboard/u-boot-with-spl.bin tmp/u-boot/
15
parted -s $@.tmp set 1 boot on
16
dd if=$(word 1,$^) of=$@.tmp seek=16 conv=notrunc status=none
17
mv "$@.tmp" $@
18
+
19
+u-boot-%-boot.img: tmp/u-boot-%/u-boot-with-spl.bin
20
+ rm -f $@.tmp
21
+ dd if=$(word 1,$^) of=$@.tmp seek=16 conv=notrunc status=none
22
+ mv "$@.tmp" $@
0 commit comments