You may want to check out sysinstalls initialization, it is used to
run as /sbin/init when you boot from installation media
Poul-Henning
In message <001201c07c8d$4276f8a0$[EMAIL PROTECTED]>, "Soumen Biswas" writ
es:
>Hi ,
>
>What are the points to be observed while writing custom init
>
>I am currently doing something like :
>/*
> 1. never exit
> 2. open fd 0,1 & 2
> 3. link statically */
>
>int main( int argc, char **argv )
>{
>int fd ;
>char cmd[128] = {0};
>
>fd = open( "/dev/console", O_RDWR );
>dup(fd);
>dup(fd);
>
> while( 1 ) {
> printf( "comm>" ); fflush( stdout );
> fgets( cmd, sizeof(cmd ), stdin );
>
> if( memcmp( "init", cmd , 4 ) == 0 )
> { close(0); close(1);close(2); execv("/init/sbin", argv ); }
>
> if( memcmp( "quit", cmd, 4) == 0 ) reboot( RB_AUTOBOOT );
> } /* while */
>
>/* should not reach here */
>return 0 ;
>}
>
>
>Am I missing something ?
>
>Thanx & Regards
>soumen
>
>
>
>
>
>To Unsubscribe: send mail to [EMAIL PROTECTED]
>with "unsubscribe freebsd-hackers" in the body of the message
>
--
Poul-Henning Kamp | UNIX since Zilog Zeus 3.20
[EMAIL PROTECTED] | TCP/IP since RFC 956
FreeBSD committer | BSD since 4.3-tahoe
Never attribute to malice what can adequately be explained by incompetence.
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message