forked from Imagelibrary/rtems
2008-12-09 Joel Sherrill <joel.sherrill@oarcorp.com>
* fileio/init.c: Add explicit creation of /etc/passwd and /etc/group so we have a test case for real password checking.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2008-12-09 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
|
* fileio/init.c: Add explicit creation of /etc/passwd and /etc/group so
|
||||||
|
we have a test case for real password checking.
|
||||||
|
|
||||||
2008-11-24 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2008-11-24 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* paranoia/paranoia.c: Add missing prototypes.
|
* paranoia/paranoia.c: Add missing prototypes.
|
||||||
|
|||||||
@@ -99,8 +99,9 @@ fstab_t fs_table[] = {
|
|||||||
#ifdef USE_SHELL
|
#ifdef USE_SHELL
|
||||||
#include <rtems/shell.h>
|
#include <rtems/shell.h>
|
||||||
|
|
||||||
void writeScript(
|
void writeFile(
|
||||||
const char *name,
|
const char *name,
|
||||||
|
int mode,
|
||||||
const char *contents
|
const char *contents
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
@@ -111,20 +112,52 @@ void writeScript(
|
|||||||
}
|
}
|
||||||
|
|
||||||
rtems_shell_write_file( name, contents );
|
rtems_shell_write_file( name, contents );
|
||||||
sc = chmod ( name, 0777 );
|
|
||||||
|
sc = chmod ( name, mode );
|
||||||
if ( sc ) {
|
if ( sc ) {
|
||||||
printf( "chmod %s: %s:\n", name, strerror(errno) );
|
printf( "chmod %s: %s:\n", name, strerror(errno) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define writeScript( _name, _contents ) \
|
||||||
|
writeFile( _name, 0777, _contents )
|
||||||
|
|
||||||
void fileio_start_shell(void)
|
void fileio_start_shell(void)
|
||||||
{
|
{
|
||||||
int sc;
|
int sc;
|
||||||
|
|
||||||
sc = mkdir("/scripts", 0777);
|
sc = mkdir("/scripts", 0777);
|
||||||
if ( sc ) {
|
if ( sc ) {
|
||||||
printf( "mkdir /scripts: %s:\n", strerror(errno) );
|
printf( "mkdir /scripts: %s:\n", strerror(errno) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sc = mkdir("/etc", 0777);
|
||||||
|
if ( sc ) {
|
||||||
|
printf( "mkdir /etc: %s:\n", strerror(errno) );
|
||||||
|
}
|
||||||
|
|
||||||
|
printf(
|
||||||
|
"Creating /etc/passwd and group with three useable accounts\n"
|
||||||
|
"root/pwd , test/pwd, rtems/NO PASSWORD"
|
||||||
|
);
|
||||||
|
|
||||||
|
writeFile(
|
||||||
|
"/etc/passwd",
|
||||||
|
0644,
|
||||||
|
"root:7QR4o148UPtb.:0:0:root::/:/bin/sh\n"
|
||||||
|
"rtems:*:1:1:RTEMS Application::/:/bin/sh\n"
|
||||||
|
"test:8Yy.AaxynxbLI:2:2:test account::/:/bin/sh\n"
|
||||||
|
"tty:!:3:3:tty owner::/:/bin/false\n"
|
||||||
|
);
|
||||||
|
writeFile(
|
||||||
|
"/etc/group",
|
||||||
|
0644,
|
||||||
|
"root:x:0:root\n"
|
||||||
|
"rtems:x:1:rtems\n"
|
||||||
|
"test:x:2:test\n"
|
||||||
|
"tty:x:3:tty\n"
|
||||||
|
);
|
||||||
|
|
||||||
writeScript(
|
writeScript(
|
||||||
"/scripts/js",
|
"/scripts/js",
|
||||||
"#! joel\n"
|
"#! joel\n"
|
||||||
|
|||||||
Reference in New Issue
Block a user