├── README.md ├── doc └── EEPROM File System Design Notes.docx ├── drivers ├── rtems_driver │ ├── eefsDriver.c │ └── init_eefs.c ├── standalone_driver │ ├── eefs_filesys.c │ ├── eefs_filesys.h │ └── eefs_macros.h └── vxworks_driver │ ├── eefs_macros.h │ ├── eefs_vxworks.c │ └── eefs_vxworks.h ├── inc ├── common_types.h ├── eefs_config.h ├── eefs_fileapi.h └── eefs_version.h ├── libraries ├── eepromfs │ └── eefs_fileapi.c ├── microeefs │ ├── microeefs.c │ └── microeefs.h └── page_window │ ├── eeprom_pagewindow.c │ └── eeprom_pagewindow.h └── tools ├── eefstool ├── Makefile ├── inc │ ├── eefs_macros.h │ ├── eefs_swap.h │ ├── eefstool_driver.h │ └── eefstool_opts.h └── src │ ├── eefs_fileapi.c │ ├── eefs_swap.c │ ├── eefstool_driver_bdm.c │ ├── eefstool_driver_img.c │ ├── eefstool_main.c │ ├── eefstool_opts_bdm.c │ ├── eefstool_opts_img.c │ └── eeprom.c └── geneepromfs ├── Makefile ├── cmdlineopt.c ├── cmdlineopt.h ├── eefs_config.h ├── geneepromfs.c ├── geneepromfs.h ├── input.dat ├── parser.c └── parser.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/README.md -------------------------------------------------------------------------------- /doc/EEPROM File System Design Notes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/doc/EEPROM File System Design Notes.docx -------------------------------------------------------------------------------- /drivers/rtems_driver/eefsDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/drivers/rtems_driver/eefsDriver.c -------------------------------------------------------------------------------- /drivers/rtems_driver/init_eefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/drivers/rtems_driver/init_eefs.c -------------------------------------------------------------------------------- /drivers/standalone_driver/eefs_filesys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/drivers/standalone_driver/eefs_filesys.c -------------------------------------------------------------------------------- /drivers/standalone_driver/eefs_filesys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/drivers/standalone_driver/eefs_filesys.h -------------------------------------------------------------------------------- /drivers/standalone_driver/eefs_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/drivers/standalone_driver/eefs_macros.h -------------------------------------------------------------------------------- /drivers/vxworks_driver/eefs_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/drivers/vxworks_driver/eefs_macros.h -------------------------------------------------------------------------------- /drivers/vxworks_driver/eefs_vxworks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/drivers/vxworks_driver/eefs_vxworks.c -------------------------------------------------------------------------------- /drivers/vxworks_driver/eefs_vxworks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/drivers/vxworks_driver/eefs_vxworks.h -------------------------------------------------------------------------------- /inc/common_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/inc/common_types.h -------------------------------------------------------------------------------- /inc/eefs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/inc/eefs_config.h -------------------------------------------------------------------------------- /inc/eefs_fileapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/inc/eefs_fileapi.h -------------------------------------------------------------------------------- /inc/eefs_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/inc/eefs_version.h -------------------------------------------------------------------------------- /libraries/eepromfs/eefs_fileapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/libraries/eepromfs/eefs_fileapi.c -------------------------------------------------------------------------------- /libraries/microeefs/microeefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/libraries/microeefs/microeefs.c -------------------------------------------------------------------------------- /libraries/microeefs/microeefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/libraries/microeefs/microeefs.h -------------------------------------------------------------------------------- /libraries/page_window/eeprom_pagewindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/libraries/page_window/eeprom_pagewindow.c -------------------------------------------------------------------------------- /libraries/page_window/eeprom_pagewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/libraries/page_window/eeprom_pagewindow.h -------------------------------------------------------------------------------- /tools/eefstool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/Makefile -------------------------------------------------------------------------------- /tools/eefstool/inc/eefs_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/inc/eefs_macros.h -------------------------------------------------------------------------------- /tools/eefstool/inc/eefs_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/inc/eefs_swap.h -------------------------------------------------------------------------------- /tools/eefstool/inc/eefstool_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/inc/eefstool_driver.h -------------------------------------------------------------------------------- /tools/eefstool/inc/eefstool_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/inc/eefstool_opts.h -------------------------------------------------------------------------------- /tools/eefstool/src/eefs_fileapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/src/eefs_fileapi.c -------------------------------------------------------------------------------- /tools/eefstool/src/eefs_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/src/eefs_swap.c -------------------------------------------------------------------------------- /tools/eefstool/src/eefstool_driver_bdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/src/eefstool_driver_bdm.c -------------------------------------------------------------------------------- /tools/eefstool/src/eefstool_driver_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/src/eefstool_driver_img.c -------------------------------------------------------------------------------- /tools/eefstool/src/eefstool_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/src/eefstool_main.c -------------------------------------------------------------------------------- /tools/eefstool/src/eefstool_opts_bdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/src/eefstool_opts_bdm.c -------------------------------------------------------------------------------- /tools/eefstool/src/eefstool_opts_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/src/eefstool_opts_img.c -------------------------------------------------------------------------------- /tools/eefstool/src/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/eefstool/src/eeprom.c -------------------------------------------------------------------------------- /tools/geneepromfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/geneepromfs/Makefile -------------------------------------------------------------------------------- /tools/geneepromfs/cmdlineopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/geneepromfs/cmdlineopt.c -------------------------------------------------------------------------------- /tools/geneepromfs/cmdlineopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/geneepromfs/cmdlineopt.h -------------------------------------------------------------------------------- /tools/geneepromfs/eefs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/geneepromfs/eefs_config.h -------------------------------------------------------------------------------- /tools/geneepromfs/geneepromfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/geneepromfs/geneepromfs.c -------------------------------------------------------------------------------- /tools/geneepromfs/geneepromfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/geneepromfs/geneepromfs.h -------------------------------------------------------------------------------- /tools/geneepromfs/input.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/geneepromfs/input.dat -------------------------------------------------------------------------------- /tools/geneepromfs/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/geneepromfs/parser.c -------------------------------------------------------------------------------- /tools/geneepromfs/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/eefs/HEAD/tools/geneepromfs/parser.h --------------------------------------------------------------------------------