* startup/bspstart.c: Merge GSOC project code to add simple device only
	filesystem (devfs), optionally completely drop out filesystem, and to
	clean up disabling newlib reentrancy support. This dropped 17K from
	the minimum.exe for sparc/sis and arm/rtl22xx_t now has a 15K code
	space.
This commit is contained in:
Joel Sherrill
2008-09-17 16:16:16 +00:00
parent d40da79b04
commit d965db14f6
2 changed files with 11 additions and 2 deletions

View File

@@ -1,3 +1,11 @@
2008-09-17 Miao Yan <yanmiaobest@gmail.com>
* startup/bspstart.c: Merge GSOC project code to add simple device only
filesystem (devfs), optionally completely drop out filesystem, and to
clean up disabling newlib reentrancy support. This dropped 17K from
the minimum.exe for sparc/sis and arm/rtl22xx_t now has a 15K code
space.
2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com> 2008-09-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* irq/FPGA.c: Remove unnecessary includes of rtems/libcsupport.h and * irq/FPGA.c: Remove unnecessary includes of rtems/libcsupport.h and

View File

@@ -199,9 +199,10 @@ void bsp_postdriver_hook(void)
extern void open_dev_console(void); extern void open_dev_console(void);
#if DEBUG #if DEBUG
printk("bsp_postdriver_hook: open_dev_console\n"); printk("bsp_postdriver_hook: initialize libio\n");
#endif #endif
open_dev_console(); if (rtems_libio_supp_helper)
(*rtems_libio_supp_helper)();
ShowBATS(); ShowBATS();
#if DEBUG #if DEBUG