genimage
genimage copied to clipboard
tool to generate multiple filesystem and flash images from a tree
Hi, I want to build a project on BTRFS. But genimage only support ext2, ext3, ext4... Can you have possibility to add btrfs support. Best Regards.
I have buildscript which creates harddisk image with partitions and some of them have MDRAID metadata on them. I would like to migrate it to genimage, but there is no...
Sometimes i need to create image as small as possible. In cases where i have userspace from buildroot and i don't know the size of that directory beforehand, i have...
For instance, this will allow us to build images using one generic config: ``` image boot.vfat { vfat { files = { "zImage", "*.dtb", "boot.scr" } } size = 6M...
[swupdate](https://github.com/sbabic/swupdate) is a tool for building firmware update images for embedded devices. It would be nice to marry genimage with swupdate in some way. Perhaps the first step is to...
I think it would be really beneficial to allow filesystems to be overlayed. For example, currently if you want to build ext4, you use something like this: ```javascript image rootfs2.ext4...
Some things off the top of my head that should/could be done at some point after #143 is merged, but which I'd rather not include in that already-way-too-long series. -...
I was a bit surprised to see that the exfat file system was not supported by genimage. Would it be possible to add it? Since genimage is used by buildroot...
genimage.config ` image PRODUCT-emmc-dev.img { hdimage { disk-signature = 0x741ac374 } partition firmware-slot-0 { image = "PRODUCT-rootfs-dev-board.ext4" partition-type = 0x83 size = 6700M } partition firmware-slot-1 { image = "PRODUCT-rootfs-dev-board.ext4"...
If I have this config: ```text image usb.img { hdimage { partition-table-type = gpt } partition root { image = "root.img" } } image root.img { size = "64M" vfat...