Problem mit "unresolved" gelöst, jetzt habe ich folgendes:
Code: Alles auswählen
ERROR: SquashFS part is too big for image (max. allowed 5111808 bytes)
im cdkflash steht jetzt ein "root-squashfs.img.too-big (5,2 MB)"
was wäre jetzt sinvoller, die Partitionsgröße im "prepare_dream" Skript per eine Konfigurationsoption zu definieren oder im "dreambox.c" manuell einzustellen?
Im Moment sieht es so aus:
Code: Alles auswählen
static struct mtd_partition dreambox_flash_partitions[] = {
{
name: "DreamBOX cramfs+squashfs",
offset: 0x000000,
size: 0x600000,
},
{
name: "DreamBOX jffs2",
offset: 0x600000,
size: 0x1c0000,
},
{
name: "DreamBOX OpenBIOS",
offset: 0x7c0000,
size: 0x040000,
mask_flags: MTD_WRITEABLE /* force read-only */
},
{
name: "DreamBOX (w/o bootloader)",
offset: 0,
size: 0x7c0000,
},
{
name: "DreamBOX (w/ bootloader)",
offset: 0,
size: 0x800000,
mask_flags: MTD_WRITEABLE /* force read-only */
},
{
name: "DreamBOX SquashedFS",
offset: 0x120000,
size: 0x4e0000
},
{
name: "DreamBOX Cramfs",
offset: 0,
size: 0x120000
}
};
Danke im Voraus!