Displaying 6 results from an estimated 6 matches for "create_dev".
2006 May 08
1
create_dev and raid
Yet another one of those "it would make sense it" posts.
Currently, create_dev in do_mounts.c simply unlinks the device and recreates it.
This doesn't seem right. If /dev/hda3 has already been created, by
some early-userspace app (udev), there's no need to unlink or even
parse the name again. Now, when talking about simple block devices,
this doesn't make much...
2012 Mar 08
3
[PATCH 0/3] kinit: Allow mount options
This patch series allows user-specified mount commands to be
sent in via kernel command line ("kinit_mount=...") or via
an embedded /etc/fstab file.
The first patch is a cleanup of a patch sent last November
by San Mehat (http://web.archiveorange.com/archive/v/EazJNBMORV2U7E0coh5h);
the next two are small improvements or bug fixes.
2006 Apr 11
1
mkrootdev utility
The attached patch breaks out the /dev/root device node creation from
do_mounts, placing it in it's own utility (called mkrootdev).
This is worthwhile, as certain setups will need the device node there
to run fstype and load a proper module (or other things).
No, it does not currently configure raid devices.... I didn't know if
that made sense in there or not....
Let me know what you
2011 Jul 08
4
[PATCH 0/4] usr/kinit checkpatch
Various coding style fixes checkpatch warns about.
The goal is not to be 100% checkpatch compliant,
but to have more consistent coding style.
As this is a trivial patch serie, will land in 24 hours in klibc git,
unless of course ml review hits a bugger.
Checked with size(3) that the generated kinit, fstype, ipconfig and
nfsmount are the same.
maximilian attems (4):
[klibc] ipconfig: reduce
2010 Mar 02
17
[PATCH 00/16] External building, update for 2.6.33 and multiple root devices.
The following patchset implements 3 seperate series of changes.
External Building
=================
Patches 1 through 8 enable to use of klibc's build system while leaving the src
tree pristine (and potentially read only). Specifically:
- srctree=<Sources for klibc>
- objtree=<Ouput directory for klibc>
- KLIBCKERNELSRC=<Kernel sources>
- KLIBCKERNELOBJ=<Kernel
2003 May 22
0
[PATCH 2.5.69 2/3] Remove NFS root support from the kernel
...oto fail;
@@ -168,6 +167,7 @@
sys_umount("/sys", 0);
out:
sys_rmdir("/sys");
+nada:
return res;
fail:
res = (dev_t) 0;
@@ -275,19 +275,6 @@
putname(fs_names);
}
-#ifdef CONFIG_ROOT_NFS
-static int __init mount_nfs_root(void)
-{
- void *data = nfs_root_data();
-
- create_dev("/dev/root", ROOT_DEV, NULL);
- if (data &&
- do_mount_root("/dev/root", "nfs", root_mountflags, data) == 0)
- return 1;
- return 0;
-}
-#endif
-
#if defined(CONFIG_BLK_DEV_RAM) || defined(CONFIG_BLK_DEV_FD)
void __init change_floppy(char *fmt, ...)
{
@...