Changeset 592 for soft/giet_vm/giet_kernel
- Timestamp:
- Jul 8, 2015, 4:04:13 PM (9 years ago)
- Location:
- soft/giet_vm/giet_kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_kernel/kernel_init.c
r579 r592 93 93 //////////////////////////////////////////////////////////////////////////////// 94 94 95 // FAT internal representation for kernel code96 __attribute__((section(".kdata")))97 fat32_fs_t _fat __attribute__((aligned(512)));98 99 95 // array of page tables virtual addresses 100 96 __attribute__((section(".kdata"))) … … 338 334 if ( gpid == 0 ) 339 335 { 340 _fat_init( 0 ); // no IRQ336 _fat_init( 1 ); // kernel mode => Inode-Tree, Fat-Cache and File-Caches 341 337 342 338 #if GIET_DEBUG_INIT -
soft/giet_vm/giet_kernel/sys_handler.c
r556 r592 164 164 &_sys_ukn, /* 0x1F */ 165 165 166 &_fat_ user_open,/* 0x20 */167 &_fat_ user_read,/* 0x21 */168 &_fat_ user_write,/* 0x22 */169 &_fat_ user_lseek,/* 0x23 */170 &_fat_f stat,/* 0x24 */166 &_fat_open, /* 0x20 */ 167 &_fat_read, /* 0x21 */ 168 &_fat_write, /* 0x22 */ 169 &_fat_lseek, /* 0x23 */ 170 &_fat_file_info, /* 0x24 */ 171 171 &_fat_close, /* 0x25 */ 172 &_ sys_ukn,/* 0x26 */173 &_ sys_ukn,/* 0x27 */174 &_ sys_ukn,/* 0x28 */175 &_ sys_ukn,/* 0x29 */172 &_fat_remove, /* 0x26 */ 173 &_fat_rename, /* 0x27 */ 174 &_fat_mkdir, /* 0x28 */ 175 &_fat_list, /* 0x29 */ 176 176 &_sys_ukn, /* 0x2A */ 177 177 &_sys_ukn, /* 0x2B */
Note: See TracChangeset
for help on using the changeset viewer.