A file system which can mount, read, and enumerate a file system image which has been appended to the compiled .bin code file before being uploaded to the mbed device.

FLASH File System

This file system can mount, read, and enumerate a file system image which has been appended to the compiled .bin code file before being uploaded to the mbed device. I wrote a utility called fsbld to create images that can be used with this file system. This GitHub repository contains the sources for that utility.

To get the file system image onto the mbed device, you need to concatenate your binary from the compiler with the file system image binary.

  • On *nix this can be done with the cat command. For example:
    cat Test_LPC1768.bin FileImage.bin >/Volumes/MBED/test.bin
  • On Windows this can be done with the copy command. For example:
    copy Test_LPC1768.bin + FileImage.bin e:\test.bin

History

2 options added: The ability to include a header file containing the binary file system image built with fsbld and the ability to set the system flash size. default tip

2015-04-05, by frankvnk [Sun, 05 Apr 2015 10:04:44 +0000] rev 2

2 options added: The ability to include a header file containing the binary file system image built with fsbld and the ability to set the system flash size.


Changed license.

2011-08-03, by AdamGreen [Wed, 03 Aug 2011 22:29:40 +0000] rev 1

Changed license.


Initial version of FLASH File System

2011-07-29, by AdamGreen [Fri, 29 Jul 2011 01:23:53 +0000] rev 0

Initial version of FLASH File System