Skip to content

Commit d7e891c

Browse files
committed
Create boot only images
1 parent 03aa461 commit d7e891c

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ image-bootloaders: \
2525
bootloaders/sopine_baseboard-uboot.bin \
2626
u-boot-sopine-flash-spi.img.xz \
2727
u-boot-sopine-erase-spi.img.xz \
28+
u-boot-pine64_plus-boot.img.xz \
29+
u-boot-sopine_baseboard-boot.img.xz
2830

2931
.PHONY: versions
3032
versions:

Makefile.blobs.mk

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,8 @@ u-boot-sopine-%.img: tmp/u-boot-sopine_baseboard/u-boot-with-spl.bin tmp/u-boot/
1515
parted -s $@.tmp set 1 boot on
1616
dd if=$(word 1,$^) of=$@.tmp seek=16 conv=notrunc status=none
1717
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

Comments
 (0)