Hi, at the moment bootloader always uses NFFS. App can tell bootloader to pick specific image for next boot by creating a file. Bootloader also keeps track of image update by writing to another file.
I want to use sys/config and FCB (flash circular buffer) for this instead. Reason for this change is the impact on code size. My current idea revolves around creating new versions of apps; one version uses NFFS and second version uses FCB. Both would go for the same flash map entry for location of their storage. And you would pick your target to use either NFFS or FCB depending on what platform you’re building for. Not too keen on this though, as it would require a bit of code duplication (main.c on boot/slinky/blinky). Better suggestions?
