Contestacion de un administrador de la pagina de berryboot
Hi Alberto,
Yes, OS images like LibreELEC and Volumio only have one partiton, in most cases, this partiton have an already squashfs file, you need to unquashfs and squashfs that file again.
As an example, look this script to make LibreELEC OS images for Berryboot:
https://github.com/agoldcheidt/libreele ... breelec.sh
May I ask the name of the OS image?
openelec y recalbox tienes que hacer un paso previo
#!/bin/bash
URL="
http://releases.libreelec.tv/LibreELEC- ... 008.img.gz"
IMAGEFILE="LibreELEC*.img"
# create berryboot image
echo ""
echo "#### DOWNLOAD OS IMAGE ####"
sudo wget $URL
echo ""
echo "#### DECOMPRESSING... ####"
sudo gunzip LibreELEC*.gz
echo ""
echo "#### MOUNTING PARTITION ####"
sudo losetup -f -P $IMAGEFILE
sudo mount /dev/loop0p1 /mnt
sudo unsquashfs /mnt/SYSTEM
sudo umount /mnt
sudo losetup -d /dev/loop0
echo ""
echo "#### UNMOUNTING PARTITION ####"
echo ""
echo "#### CREATING BERRYBOOT IMAGE ####"
sudo mksquashfs squashfs-root/ $IMAGEFILE-berryboot.img -comp lzo -e lib/modules var/cache/apt/archives
sudo rm -rf squashfs-root
echo ""
echo "#### DONE! IMAGE READY ####"
echo ""
en la parte de montar la particion ya me da fallo de una variable estoy pegandome con los pasos, menudo lio.