Searched refs:fstab (Results 1 – 25 of 76) sorted by relevance
1234
/external/e2fsprogs/install-utils/ |
D | convfstab | 69 done </etc/fstab >/tmp/newfstab.$$ 70 mv -f /etc/fstab /etc/fstab.bak 71 mv -f /tmp/newfstab.$$ /etc/fstab
|
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Posix/ |
D | getfsent.cpp | 15 struct fstab *fentry = getfsent(); in main() 20 struct fstab *pentry = getfsspec(fentry->fs_spec); in main() 23 struct fstab *wentry = getfsfile(fentry->fs_file); in main()
|
/external/crosvm/arch/src/ |
D | android.rs | 26 pub fn create_android_fdt(fdt: &mut FdtWriter, fstab: File) -> Result<()> { in create_android_fdt() 27 let vecs = BufReader::new(fstab) in create_android_fdt() 35 let (dtprop, fstab): (_, Vec<_>) = vecs.into_iter().partition(|x| x[0] == "#dt-vendor"); in create_android_fdt() 44 for vec in fstab { in create_android_fdt()
|
/external/avb/libavb_user/ |
D | avb_ops_user.cpp | 50 static bool open_fstab(Fstab* fstab) { in open_fstab() argument 51 return ReadDefaultFstab(fstab) || ReadFstabFromFile("/fstab.device", fstab); in open_fstab() 92 Fstab fstab; in open_partition() local 93 if (!open_fstab(&fstab)) { in open_partition() 96 auto record = GetEntryForMountPoint(&fstab, "/misc"); in open_partition()
|
/external/fsck_msdos/ |
D | fsutil.h | 55 struct fstab; 56 int checkfstab(int, int (*)(struct fstab *),
|
/external/e2fsprogs/ |
D | INSTALL.elfbin | 30 4) Make sure your /etc/fstab file is correct. 32 Some distributions install an /etc/fstab which is missing the 38 your /etc/fstab file look like this: 47 Michael Weller) that may help you correct your /etc/fstab file.
|
D | INSTALL | 51 9) Make sure your /etc/fstab file is correct. 53 Some distributions install an /etc/fstab which is missing the 59 your /etc/fstab file look like this: 68 Michael Weller) that may help you correct your /etc/fstab file.
|
/external/e2fsprogs/doc/RelNotes/ |
D | v1.29.txt | 19 /etc/fstab, the -R option which skips the root filesystem will skip 22 entry in /etc/fstab!
|
D | v1.13.txt | 12 Fsck now parses the /etc/fstab file directly (instead of using 15 diskless workstations where all of the filesystems in /etc/fstab have 17 from a /etc/fstab file with missing pass numbers.
|
D | v1.14.txt | 4 Fix the fstab parsing code so that it can handle blank lines and
|
D | v1.15.txt | 61 /etc/fstab is given to it. 63 Fsck now understands the UUID=xxxx and LABEL=yyyy forms in /etc/fstab
|
D | v1.21.txt | 49 standard and non-standard device names are used in /etc/fstab.
|
D | v1.30.txt | 56 needing to specify them on the mount command line or in the /etc/fstab
|
/external/e2fsprogs/tests/f_dup_de/ |
D | expect.1 | 8 Duplicate entry 'fstab' in /etc (12) found. Clear? yes
|
D | expect-nohtree.1 | 11 Duplicate entry 'fstab' in /etc (12) found. Clear? yes
|
/external/ltp/testcases/kernel/security/smack/ |
D | README | 11 2) Include this line in the /etc/fstab file:
|
/external/e2fsprogs/misc/ |
D | fsck.c | 1265 const char *fstab; in main() local 1283 fstab = getenv("FSTAB_FILE"); in main() 1284 if (!fstab) in main() 1285 fstab = _PATH_MNTTAB; in main() 1286 load_fs_info(fstab); in main()
|
/external/grpc-grpc/tools/gce/ |
D | linux_worker_init.sh | 26 sudo sed -i '$ a\/swap none swap sw 0 0' /etc/fstab
|
/external/linux-kselftest/tools/testing/selftests/rcutorture/doc/ |
D | rcu-test-image.txt | 18 cat << '___EOF___' | sudo dd of=/mnt/etc/fstab
|
/external/ltp/testscripts/ |
D | autofs1.sh | 104 floppy_dev=`grep floppy /etc/fstab | awk '{print $1}'`
|
D | autofs4.sh | 99 floppy_dev=`grep floppy /etc/fstab | awk '{print $1}'`
|
/external/toybox/www/doc/ |
D | mount.txt | 21 /etc/fstab for default options, and the options you specify on the command 37 default even if there's nothing in /etc/fstab. Some actions (such as --bind 43 in /etc/fstab are for the mount command (such as "user" which only does
|
/external/ltp/testcases/kernel/security/integrity/ima/ |
D | README | 35 Add 'iversion' in /etc/fstab as:
|
/external/ltp/ |
D | README.kernel_config | 253 You should also have made the following entries in your /etc/fstab file 261 2) Create the above entry in /etc/fstab file,
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_platform_limits_freebsd.cpp | 137 unsigned struct_fstab_sz = sizeof(struct fstab);
|
1234