Changeset 523 for Whitix/branches/hybrid
- Timestamp:
- 05/24/08 09:49:09 (3 months ago)
- Location:
- Whitix/branches/hybrid/fs/isofs
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/hybrid/fs/isofs/Makefile
r1 r523 2 2 include ../../make.inc 3 3 4 OBJS = super.o dir.o 4 MODULES = super.sys dir.sys 5 5 6 build: $(OBJS) 6 build: $(MODULES) 7 ld -r $(MODULES) -o cdfs.sys 8 9 modules_install: 10 cp *.sys ../../CdRoot/System/Modules/Filesystems 7 11 8 12 clean: -
Whitix/branches/hybrid/fs/isofs/isofs.h
r67 r523 67 67 struct IsoPrimaryDesc 68 68 { 69 BYTE type,id[5], version,unused[1];70 char systemId[32], volId[32];69 BYTE type,id[5], version, unused[1]; 70 char systemId[32], volId[32]; 71 71 char unused2[8]; 72 72 Both32 numSectors; -
Whitix/branches/hybrid/fs/isofs/super.c
r67 r523 32 32 if (dirEntry->flags & 0x80) 33 33 { 34 printf("dirEntry->flags & 0x80!\n");34 KePrint("dirEntry->flags & 0x80!\n"); 35 35 cli(); hlt(); 36 36 }else … … 51 51 if (!buffer) 52 52 { 53 printf("IsoReadVNode: failed to read buffer\n");53 KePrint("IsoReadVNode: failed to read buffer\n"); 54 54 return -EIO; 55 55 } … … 148 148 149 149 retVal=VfsAllocSuper(dev,flags); 150 150 151 if (!retVal) 151 152 return NULL;
