[EMAIL PROTECTED] wrote:
+       i = execve("/sbin/init", argv, envp);
+       if (i<0)
+               printf("Failed to start init: %s :(\n", strerror(errno));

This should become:
        execve("/sbin/init", argv, envp);
        /* If execve returns, something went very wrong */
        printf("Failed to start init: %s :(\n", strerror(errno));

--
Alexander E. Patrakov
--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to