Displaying 4 results from an estimated 4 matches for "exec_init".
2006 Sep 28
1
ramfs to tmpfs
...d)
{
int fd;
if ((fd = open("/dev/console", O_RDWR)) >= 0) {
dup2(fd, 0);
dup2(fd, 1);
dup2(fd, 2);
if (fd > 2) close(fd);
}
}
/* if init specified in cmdline, execute it, else trye from the usual
* places. Die if no init found */
static void __attribute__ ((noreturn)) exec_init(void)
{
int i;
char *s;
char *definit[] = {
"/sbin/init",
"/bin/init",
"/etc/init",
"/bin/sh",
NULL
};
openconsole();
if ((s = strstr(cmdline, "init="))) {
char *p;
/* find last init= */
while ((p = strstr(s+1, "init=&q...
2006 Jan 13
26
A couple of issues
I''ve been testing ZFS since it came out on b27 and this week I BFUed to b30. I''ve seen two problems, one I''ll call minor and the other major. The hardware is a Dell PowerEdge 2600 with 2 3.2GHz Xeons, 2GB memory and a perc3 controller. I have created a filesystem for over 1000 users on it and take hourly snapshots, which destroy the one from 24 hours ago, except the
2012 Mar 23
19
[PATCH 00/19][elflink] Improve compatibility with 4.x
From: Matt Fleming <matt.fleming at intel.com>
The following patch series is available at,
git://git.zytor.com/users/mfleming/syslinux.git elflink
All patches are against the 'elflink' branch.
This series fixes a few serious bugs and some behavioural
incompatibilities with the 4.x series.
Matt Fleming (19):
ldlinux: Initialise 'p' before using it.
ldlinux: Parse
2011 May 25
1
[GIT PULL] elflink ldlinux
Hi,
These patches contain support for some features that are already in
Syslinux 4 but weren't working properly on the elflink branch. It's
another step closer to feature parity with Syslinux 4.
Having to jump through the comboot API for localboot support is less
than ideal and I'll eventually fix that, probably when we move a big
chunk of code from asm to C.
Also, there's a