From deeefd2e53795500ebb2afcc0b4d97e84eb7f7e9 Mon Sep 17 00:00:00 2001 From: Pixel Date: Sat, 29 Jan 2011 19:58:11 -0800 Subject: Adding sample code for the romfs into the demo, and into the makefile. --- os/src/romfs.c | 1 + 1 file changed, 1 insertion(+) (limited to 'os/src') diff --git a/os/src/romfs.c b/os/src/romfs.c index 403bef9..270fb54 100644 --- a/os/src/romfs.c +++ b/os/src/romfs.c @@ -90,5 +90,6 @@ static int romfs_open(void * opaque, const char * path, int flags, int mode) { } void register_romfs(const char * mountpoint, const uint8_t * romfs) { + DBGOUT("Registering romfs `%s' @ %p\r\n", mountpoint, romfs); register_fs(mountpoint, romfs_open, (void *) romfs); } -- cgit v1.2.3