Просмотр исходного кода

brcm2708: split sdcard.img.gz into a sysupgrade and factory image

@vahid-dan reported a issue with extracting the rpi images with
Gnome's Archive Manager:
"Ubuntu Archive Manager cannot extract the file and it just
throws a general error message: "An error occurred while
extracting files".
<https://forum.lede-project.org/t/corrupted-pre-built-v18-06-0-rc2-image-for-rpi>

@blogic told me to split the single sdcard.img.gz for the RPi
into a sysupgrade and a factory image for all brcm2708 targets.
The factory images will have no metadata attached, this way
these utilities that can't deal with the attached metadata will
not fail for no reason.

Cc: John Crispin <[email protected]>
Signed-off-by: Christian Lamparter <[email protected]>
Christian Lamparter 7 лет назад
Родитель
Сommit
7516a96011
1 измененных файлов с 3 добавлено и 2 удалено
  1. 3 2
      target/linux/brcm2708/image/Makefile

+ 3 - 2
target/linux/brcm2708/image/Makefile

@@ -49,8 +49,9 @@ endef
 define Device/Default
 define Device/Default
   KERNEL := kernel-bin | kernel-img
   KERNEL := kernel-bin | kernel-img
   KERNEL_IMG := kernel.img
   KERNEL_IMG := kernel.img
-  IMAGES := sdcard.img.gz
-  IMAGE/sdcard.img.gz := boot-img | sdcard-img | gzip | append-metadata
+  IMAGES := factory.img.gz sysupgrade.img.gz
+  IMAGE/sysupgrade.img.gz := boot-img | sdcard-img | gzip | append-metadata
+  IMAGE/factory.img.gz := boot-img | sdcard-img | gzip
 endef
 endef
 
 
 define Device/rpi
 define Device/rpi