Changeset e807db0 in rtems
- Timestamp:
- 05/25/01 13:47:47 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4cb89cc9
- Parents:
- c891fe0
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libfs/ChangeLog
rc891fe0 re807db0 1 2001-05-25 Joel Sherrill <joel@OARcorp.com> 2 3 * src/imfs/imfs_initsupp.c: Create the root node with the 4 desired permissions. Nodes should be created with the right 5 permissions because chmod() is not supported by the miniIMFS 6 so changing after creation is not possible. 7 1 8 2001-04-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
c/src/exec/libfs/src/imfs/imfs_initsupp.c
rc891fe0 re807db0 47 47 /* 48 48 * Create the root node 49 * 50 * NOTE: UNIX root is 755 and owned by root/root (0/0). 49 51 */ 50 52 … … 53 55 IMFS_DIRECTORY, 54 56 "", 55 ( S_IFDIR | S_IRWXO | S_IRWXG| S_IRWXU),57 ( S_IFDIR | 0755 ), 56 58 NULL 57 59 ); -
c/src/libfs/ChangeLog
rc891fe0 re807db0 1 2001-05-25 Joel Sherrill <joel@OARcorp.com> 2 3 * src/imfs/imfs_initsupp.c: Create the root node with the 4 desired permissions. Nodes should be created with the right 5 permissions because chmod() is not supported by the miniIMFS 6 so changing after creation is not possible. 7 1 8 2001-04-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
c/src/libfs/src/imfs/imfs_initsupp.c
rc891fe0 re807db0 47 47 /* 48 48 * Create the root node 49 * 50 * NOTE: UNIX root is 755 and owned by root/root (0/0). 49 51 */ 50 52 … … 53 55 IMFS_DIRECTORY, 54 56 "", 55 ( S_IFDIR | S_IRWXO | S_IRWXG| S_IRWXU),57 ( S_IFDIR | 0755 ), 56 58 NULL 57 59 ); -
cpukit/libfs/ChangeLog
rc891fe0 re807db0 1 2001-05-25 Joel Sherrill <joel@OARcorp.com> 2 3 * src/imfs/imfs_initsupp.c: Create the root node with the 4 desired permissions. Nodes should be created with the right 5 permissions because chmod() is not supported by the miniIMFS 6 so changing after creation is not possible. 7 1 8 2001-04-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
cpukit/libfs/src/imfs/imfs_initsupp.c
rc891fe0 re807db0 47 47 /* 48 48 * Create the root node 49 * 50 * NOTE: UNIX root is 755 and owned by root/root (0/0). 49 51 */ 50 52 … … 53 55 IMFS_DIRECTORY, 54 56 "", 55 ( S_IFDIR | S_IRWXO | S_IRWXG| S_IRWXU),57 ( S_IFDIR | 0755 ), 56 58 NULL 57 59 );
Note: See TracChangeset
for help on using the changeset viewer.