Changeset c891fe0 in rtems
- Timestamp:
- 05/25/01 13:46:02 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- e807db0
- Parents:
- 6287b57
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libcsupport/src/base_fs.c
r6287b57 rc891fe0 85 85 * If the mkdir() fails, we can't print anything so just fatal error. 86 86 * 87 * NOTE: UNIX root is 755 and owned by root/root (0/0). 87 * NOTE: UNIX root is 755 and owned by root/root (0/0). It is actually 88 * created that way by the IMFS. 88 89 */ 89 status=chmod("/", 0755);90 if ( status != 0 )91 rtems_fatal_error_occurred( 0xABCD0003 );92 90 93 91 status = mkdir( "/dev", 0777); -
c/src/lib/ChangeLog
r6287b57 rc891fe0 1 2001-05-25 Joel Sherrill <joel@OARcorp.com> 2 3 * libc/base_fs.c: Deleted chmod() now that IMFS creates the 4 root node with the desired permissions. chmod() is also not 5 supported by the miniIMFS so this is not allowable. 6 1 7 2000-05-24 Fernando Ruiz Casas <fernando.ruiz@ctv.es> 2 8 -
c/src/lib/libc/base_fs.c
r6287b57 rc891fe0 85 85 * If the mkdir() fails, we can't print anything so just fatal error. 86 86 * 87 * NOTE: UNIX root is 755 and owned by root/root (0/0). 87 * NOTE: UNIX root is 755 and owned by root/root (0/0). It is actually 88 * created that way by the IMFS. 88 89 */ 89 status=chmod("/", 0755);90 if ( status != 0 )91 rtems_fatal_error_occurred( 0xABCD0003 );92 90 93 91 status = mkdir( "/dev", 0777); -
cpukit/libcsupport/src/base_fs.c
r6287b57 rc891fe0 85 85 * If the mkdir() fails, we can't print anything so just fatal error. 86 86 * 87 * NOTE: UNIX root is 755 and owned by root/root (0/0). 87 * NOTE: UNIX root is 755 and owned by root/root (0/0). It is actually 88 * created that way by the IMFS. 88 89 */ 89 status=chmod("/", 0755);90 if ( status != 0 )91 rtems_fatal_error_occurred( 0xABCD0003 );92 90 93 91 status = mkdir( "/dev", 0777);
Note: See TracChangeset
for help on using the changeset viewer.