search for: root_nf

Displaying 6 results from an estimated 6 matches for "root_nf".

Did you mean: root_nfs
2003 May 22
0
[PATCH 2.5.69 2/3] Remove NFS root support from the kernel
...t; 1.6 # arch/arm/def-configs/graphicsclient 1.10 -> 1.11 # arch/mips/defconfig-decstation 1.6 -> 1.7 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/05/22 bos@serpentine.internal.keyresearch.com 1.1232 # Get rid of CONFIG_ROOT_NFS # -------------------------------------------- # 03/05/22 bos@serpentine.internal.keyresearch.com 1.1233 # Get rid of nfsroot. # -------------------------------------------- # 03/05/22 bos@serpentine.internal.keyresearch.com 1.1234 # Don't do anything if root=initramfs or root=/dev/nfs. # ----...
2005 Jan 05
0
[PATCH] kinit/do_mounts.c:name_to_dev_t()
..._mode) ) return st.st_rdev; - if ( !strncmp(name, "/dev/", 5) ) { + if ( strncmp(name, "/dev/", 5) ) { res = (dev_t) strtoul(name, &p, 16); if (*p) return 0; @@ -111,7 +111,7 @@ } name += 5; if (strcmp(name, "nfs") == 0) - return 0; + return Root_NFS; len = strlen(name); s = alloca(len+1); -- Thayne Harbaugh Linux Networx -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://www.zytor.c...
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
2006 Jun 26
0
[klibc 14/43] Remove in-kernel nfsroot code
...(+), 731 deletions(-) diff --git a/fs/Kconfig b/fs/Kconfig index f9b5842..71d6b30 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -1498,20 +1498,6 @@ config NFSD_TCP TCP connections usually perform better than the default UDP when the network is lossy or congested. If unsure, say Y. -config ROOT_NFS - bool "Root file system on NFS" - depends on NFS_FS=y && IP_PNP - help - If you want your Linux box to mount its whole root file system (the - one containing the directory /) from some other computer over the - net via NFS (presumably because your box doesn't have a ha...
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 1/3] remove ipconfig support from the kernel
...DVANCED_ROUTER is not set -# CONFIG_IP_PNP is not set # CONFIG_NET_IPIP is not set # CONFIG_NET_IPGRE is not set # CONFIG_IP_MROUTE is not set diff -Nru a/fs/Kconfig b/fs/Kconfig --- a/fs/Kconfig Thu May 22 15:41:57 2003 +++ b/fs/Kconfig Thu May 22 15:41:57 2003 @@ -1331,15 +1331,12 @@ config ROOT_NFS bool "Root file system on NFS" - depends on NFS_FS=y && IP_PNP + depends on NFS_FS=y && NFS_FS=n help If you want your Linux box to mount its whole root file system (the one containing the directory /) from some other computer over the net via NFS (presuma...