From: Christian Lamparter Date: Sun, 29 Jul 2018 09:55:14 +0000 (+0200) Subject: brcm2708: split sdcard.img.gz into a sysupgrade and factory image X-Git-Tag: v19.07.0-rc1~3067 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=7516a960113d512cb2909f40bd07caf2a6c547b1;hp=df495305f36216c972255f62d0d0b6f8d4567b87 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". @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 Signed-off-by: Christian Lamparter --- diff --git a/target/linux/brcm2708/image/Makefile b/target/linux/brcm2708/image/Makefile index 80a019270d..aedea94451 100644 --- a/target/linux/brcm2708/image/Makefile +++ b/target/linux/brcm2708/image/Makefile @@ -49,8 +49,9 @@ endef define Device/Default KERNEL := kernel-bin | 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 define Device/rpi