Changeset e8fcadb in rtems
- Timestamp:
- Sep 17, 2008, 3:42:48 PM (11 years ago)
- Branches:
- 4.10, 4.11, master
- Children:
- d40da79b
- Parents:
- aa2d045
- Location:
- testsuites/samples
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/samples/ChangeLog
raa2d045 re8fcadb 1 2008-09-17 Miao Yan <yanmiaobest@gmail.com> 2 3 * hello/system.h, minimum/Makefile.am, minimum/init.c: Merge GSOC 4 project code to add simple device only filesystem (devfs), optionally 5 completely drop out filesystem, and to clean up disabling newlib 6 reentrancy support. This dropped 17K from the minimum.exe for 7 sparc/sis and arm/rtl22xx_t now has a 15K code space. 8 1 9 2008-09-06 Ralf Corsépius <ralf.corsepius@rtems.org> 2 10 -
testsuites/samples/hello/system.h
raa2d045 re8fcadb 34 34 #define CONFIGURE_RTEMS_INIT_TASKS_TABLE 35 35 36 #define CONFIGURE_USE_ MINIIMFS_AS_BASE_FILESYSTEM36 #define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM 37 37 38 38 #include <rtems/confdefs.h> -
testsuites/samples/minimum/Makefile.am
raa2d045 re8fcadb 3 3 ## 4 4 5 MANAGERS = all5 MANAGERS = 6 6 7 7 rtems_tests_PROGRAMS = minimum.exe -
testsuites/samples/minimum/init.c
raa2d045 re8fcadb 35 35 36 36 /* 37 * This is the smallest IO subsystem RTEMS currently supports.37 * This application has no filesytem and libio support. 38 38 */ 39 #define CONFIGURE_ USE_MINIIMFS_AS_BASE_FILESYSTEM39 #define CONFIGURE_APPLICATION_DISABLE_FILESYSTEM 40 40 41 41 /*
Note: See TracChangeset
for help on using the changeset viewer.