forked from Imagelibrary/rtems
2001-05-25 Joel Sherrill <joel@OARcorp.com>
* src/imfs/imfs_initsupp.c: Create the root node with the desired permissions. Nodes should be created with the right permissions because chmod() is not supported by the miniIMFS so changing after creation is not possible.
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2001-05-25 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* src/imfs/imfs_initsupp.c: Create the root node with the
|
||||
desired permissions. Nodes should be created with the right
|
||||
permissions because chmod() is not supported by the miniIMFS
|
||||
so changing after creation is not possible.
|
||||
|
||||
2001-04-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* configure.in: Add [-ansi -fasm] to RTEMS_PROG_CC_FOR_TARGET.
|
||||
|
||||
@@ -46,13 +46,15 @@ int IMFS_initialize_support(
|
||||
|
||||
/*
|
||||
* Create the root node
|
||||
*
|
||||
* NOTE: UNIX root is 755 and owned by root/root (0/0).
|
||||
*/
|
||||
|
||||
temp_mt_entry->mt_fs_root.node_access = IMFS_create_node(
|
||||
NULL,
|
||||
IMFS_DIRECTORY,
|
||||
"",
|
||||
( S_IFDIR | S_IRWXO | S_IRWXG| S_IRWXU ),
|
||||
( S_IFDIR | 0755 ),
|
||||
NULL
|
||||
);
|
||||
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
2001-05-25 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* src/imfs/imfs_initsupp.c: Create the root node with the
|
||||
desired permissions. Nodes should be created with the right
|
||||
permissions because chmod() is not supported by the miniIMFS
|
||||
so changing after creation is not possible.
|
||||
|
||||
2001-04-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* configure.in: Add [-ansi -fasm] to RTEMS_PROG_CC_FOR_TARGET.
|
||||
|
||||
@@ -46,13 +46,15 @@ int IMFS_initialize_support(
|
||||
|
||||
/*
|
||||
* Create the root node
|
||||
*
|
||||
* NOTE: UNIX root is 755 and owned by root/root (0/0).
|
||||
*/
|
||||
|
||||
temp_mt_entry->mt_fs_root.node_access = IMFS_create_node(
|
||||
NULL,
|
||||
IMFS_DIRECTORY,
|
||||
"",
|
||||
( S_IFDIR | S_IRWXO | S_IRWXG| S_IRWXU ),
|
||||
( S_IFDIR | 0755 ),
|
||||
NULL
|
||||
);
|
||||
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
2001-05-25 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* src/imfs/imfs_initsupp.c: Create the root node with the
|
||||
desired permissions. Nodes should be created with the right
|
||||
permissions because chmod() is not supported by the miniIMFS
|
||||
so changing after creation is not possible.
|
||||
|
||||
2001-04-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* configure.in: Add [-ansi -fasm] to RTEMS_PROG_CC_FOR_TARGET.
|
||||
|
||||
@@ -46,13 +46,15 @@ int IMFS_initialize_support(
|
||||
|
||||
/*
|
||||
* Create the root node
|
||||
*
|
||||
* NOTE: UNIX root is 755 and owned by root/root (0/0).
|
||||
*/
|
||||
|
||||
temp_mt_entry->mt_fs_root.node_access = IMFS_create_node(
|
||||
NULL,
|
||||
IMFS_DIRECTORY,
|
||||
"",
|
||||
( S_IFDIR | S_IRWXO | S_IRWXG| S_IRWXU ),
|
||||
( S_IFDIR | 0755 ),
|
||||
NULL
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user