Source: debian-installer Severity: wishlist Tags: patch Dear installer maintainers,
Please could you generate installer images for the Orange Pi One Plus? The U-Boot support is already there in unstable, so I think it would just be a matter of adding orangepi_one_plus to the list in build/config/arm64/*.cfg, as in the patch below. Thank you very much, Harold. diff --git a/build/config/arm64/netboot-gtk.cfg b/build/config/arm64/netboot-gtk.cfg index 243202414..5bd6fdbbf 100644 --- a/build/config/arm64/netboot-gtk.cfg +++ b/build/config/arm64/netboot-gtk.cfg @@ -36,7 +36,7 @@ netboot_images_concatenateable: $(TEMP_KERNEL) $(TEMP_INITRD) $(TEMP_DTBS) cp -r $(TEMP_DTBS) $(TEMP)/netboot_images_concatenateable/dtbs/ cp boot/README.device-tree $(TEMP)/netboot_images_concatenateable/dtbs/README mkdir -p $(SOME_DEST)/$(EXTRANAME)/SD-card-images/$(CONCATENATEABLE_SUFFIX) - for target in a64-olinuxino nanopi_neo2 orangepi_zero_plus2 pine64_plus pinebook teres_i ; do \ + for target in a64-olinuxino nanopi_neo2 orangepi_one_plus orangepi_zero_plus2 pine64_plus pinebook teres_i ; do \ echo "Providing u-boot binaries for $$target ..." ; \ gen-hd-image -v -s "$(IMAGE_SIZE)" -p 32768 -b firmware -o $(SOME_DEST)/$(EXTRANAME)/SD-card-images/$(CONCATENATEABLE_SUFFIX)/firmware.$${target}.img ; \ TARGET=/usr/lib/u-boot/$${target} u-boot-install-sunxi $(SOME_DEST)/$(EXTRANAME)/SD-card-images/$(CONCATENATEABLE_SUFFIX)/firmware.$${target}.img ; \ diff --git a/build/config/arm64/netboot.cfg b/build/config/arm64/netboot.cfg index 5348b862e..54a30d938 100644 --- a/build/config/arm64/netboot.cfg +++ b/build/config/arm64/netboot.cfg @@ -21,7 +21,7 @@ netboot_images_concatenateable: $(TEMP_KERNEL) $(TEMP_INITRD) $(TEMP_DTBS) cp -r $(TEMP_DTBS) $(TEMP)/netboot_images_concatenateable/dtbs/ cp boot/README.device-tree $(TEMP)/netboot_images_concatenateable/dtbs/README mkdir -p $(SOME_DEST)/$(EXTRANAME)/SD-card-images/$(CONCATENATEABLE_SUFFIX) - for target in a64-olinuxino nanopi_neo2 orangepi_zero_plus2 pine64_plus pinebook teres_i ; do \ + for target in a64-olinuxino nanopi_neo2 orangepi_one_plus orangepi_zero_plus2 pine64_plus pinebook teres_i ; do \ echo "Providing u-boot binaries for $$target ..." ; \ gen-hd-image -v -s "$(IMAGE_SIZE)" -p 32768 -b firmware -o $(SOME_DEST)/$(EXTRANAME)/SD-card-images/$(CONCATENATEABLE_SUFFIX)/firmware.$${target}.img ; \ TARGET=/usr/lib/u-boot/$${target} u-boot-install-sunxi $(SOME_DEST)/$(EXTRANAME)/SD-card-images/$(CONCATENATEABLE_SUFFIX)/firmware.$${target}.img ; \ diff --git a/build/config/arm64/u-boot.cfg b/build/config/arm64/u-boot.cfg index 68d6978b0..34f7c8685 100644 --- a/build/config/arm64/u-boot.cfg +++ b/build/config/arm64/u-boot.cfg @@ -6,7 +6,7 @@ EXTRANAME = $(MEDIUM)/ .PHONY: u-boot-binaries u-boot-binaries: mkdir -p $(SOME_DEST)/$(EXTRANAME)/ - for target in a64-olinuxino nanopi_neo2 orangepi_zero_plus2 pine64_plus pinebook teres_i ; do \ + for target in a64-olinuxino nanopi_neo2 orangepi_one_plus orangepi_zero_plus2 pine64_plus pinebook teres_i ; do \ echo "Providing u-boot binaries for $$target ..." ; \ gen-hd-image -v -b firmware -o $(SOME_DEST)/$(EXTRANAME)/$${target}.img ; \ TARGET=/usr/lib/u-boot/$${target} u-boot-install-sunxi $(SOME_DEST)/$(EXTRANAME)/$${target}.img ; \