Home
last modified time | relevance | path

Searched refs:ext2 (Results 1 – 25 of 925) sorted by relevance

12345678910>>...37

/OK3568_Linux_fs/buildroot/fs/ext2/
H A DConfig.in2 bool "ext2/3/4 root filesystem"
5 Build an ext2/3/4 root filesystem
13 bool "ext2/3/4 variant"
17 bool "ext2 (rev0)"
21 bool "ext2 (rev1)"
78 any ext2/3/4 filesystem features.
83 For more information about the ext2/3/4 features which can be
96 Select compressor for ext2/3/4 filesystem of the root
102 Do not compress the ext2/3/4 filesystem.
107 Do compress the ext2/3/4 filesystem with gzip.
[all …]
H A Dext2.mk18 $(HOST_DIR)/sbin/resize2fs -M $(BINARIES_DIR)/rootfs.ext2
19 $(HOST_DIR)/sbin/e2fsck -fy $(BINARIES_DIR)/rootfs.ext2
20 $(HOST_DIR)/sbin/tune2fs -m $(BR2_TARGET_ROOTFS_EXT2_RESBLKS) $(BINARIES_DIR)/rootfs.ext2
21 $(HOST_DIR)/sbin/resize2fs -M $(BINARIES_DIR)/rootfs.ext2
54 …ln -sf rootfs.ext2$(ROOTFS_EXT2_COMPRESS_EXT) $(BINARIES_DIR)/rootfs.ext$(BR2_TARGET_ROOTFS_EXT2_G…
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/syslinux/syslinux/
H A D0001-linux-syslinux-support-ext2-3-4-device.patch4 Subject: [PATCH 1/9] linux/syslinux: support ext2/3/4 device
6 * Support ext2/3/4 deivce.
7 * The open_ext2_fs() checks whether it is an ext2/3/4 device,
8 do the ext2/3/4 installation (install_to_ext2()) if yes, otherwise go
10 * The ext2/3/4 support doesn't require root privileges since it doesn't need
30 + * Check whether the device contains an ext2, ext3 or ext4 fs and open it if
34 + * 1: Not an ext2, ext3 or ext4
41 +/* The install func for ext2, ext3 and ext4 */
54 + * Check if it is an ext2, ext3 or ext4
78 + fprintf(stderr, "%s: supported fs: fat/ntfs/ext2/ex3/ext4\n", program);
H A D0002-linux-syslinux-implement-open_ext2_fs.patch6 The open_ext2_fs() checks whether it is an ext2/ext3/ext4 device, and
8 0: It is an ext2, ext3 or ext4.
9 1: Not an ext2, ext3 or ext4.
138 /* The install func for ext2, ext3 and ext4 */
/OK3568_Linux_fs/kernel/fs/ext2/
H A DMakefile6 obj-$(CONFIG_EXT2_FS) += ext2.o
8 ext2-y := balloc.o dir.o file.o ialloc.o inode.o \
11 ext2-$(CONFIG_EXT2_FS_XATTR) += xattr.o xattr_user.o xattr_trusted.o
12 ext2-$(CONFIG_EXT2_FS_POSIX_ACL) += acl.o
13 ext2-$(CONFIG_EXT2_FS_SECURITY) += xattr_security.o
/OK3568_Linux_fs/debian/scripts/rkstage0/02-sys-tweaks/files/
H A Dfstab1 /dev/root / ext2 rw,noatime 0 1
3 /dev/disk/by-partlabel/oem /oem ext2 defaults 0 2
4 /dev/disk/by-partlabel/userdata /userdata ext2 defaults 0 2
/OK3568_Linux_fs/kernel/Documentation/filesystems/
H A Dext2.rst7 ext2 was originally released in January 1993. Written by R\'emy Card,
70 noquota option ls silently ignored by ext2.
76 ext2 shares many properties with traditional Unix filesystems. It has
118 The first version of ext2 (revision 0) stores a copy at the start of
136 All fields in the superblock (as in all other ext2 structures) are stored
143 The inode (index node) is a fundamental concept in the ext2 filesystem.
169 The flags field contains some ext2-specific flags which aren't catered
191 The current implementation of ext2 uses a singly-linked list to store
215 In ext2, there is a mechanism for reserving a certain number of blocks
226 filesystems. The superblock of the ext2 filesystem contains several
[all …]
/OK3568_Linux_fs/buildroot/package/e2fsprogs/
H A DConfig.in27 ext2/ext3/ext4 file system debugger
32 Save critical ext2/ext3/ext4 filesystem metadata to a file
72 FUSE file system client for ext2/ext3/ext4 file systems
80 ext2/ext3/ext4 file system resizer
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.ext41 U-Boot supports access of both ext2 and ext4 filesystems, either in read-only
4 First, to enable support for both ext4 (and, automatically, ext2 as well),
10 Next, to select the ext2-related commands:
82 -- Uboot existing ext2 load and ls implementation
H A DREADME.sata6 * ext2load to read a file from ext2 file system
48 1.3 How to load an image from an ext2 file system in U-Boot?
50 U-Boot doesn't support writing to an ext2 file system, so the
/OK3568_Linux_fs/u-boot/cmd/
H A Dext2.su
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/e2fsprogs/
H A De2fsprogs_1.46.5.bb65 for i in mke2fs mkfs.ext2 mkfs.ext3 mkfs.ext4; do
80 mv ${D}${base_sbindir}/mkfs.ext2 ${D}${base_sbindir}/mkfs.ext2.e2fsprogs
113 ALTERNATIVE:${PN}-mke2fs = "mke2fs mkfs.ext2"
115 ALTERNATIVE_LINK_NAME[mkfs.ext2] = "${base_sbindir}/mkfs.ext2"
/OK3568_Linux_fs/yocto/poky/scripts/
H A Drunqemu.README17 <filesystem> is the path to an ext2 image (e.g. filesystem-qemuarm.ext2) or an nfs directory
24 When used within the build system, it will default to qemuarm, ext2 and the last kernel and
/OK3568_Linux_fs/kernel/Documentation/filesystems/ext4/
H A Dabout.rst7 filesystems. The same general ideas should apply to ext2/3 filesystems
42 Also see https://www.nongnu.org/ext2-doc/ for quite a collection of
43 information about ext2/3. Here's another old reference:
/OK3568_Linux_fs/buildroot/board/terasic/de10nano_cyclone5/
H A Dreadme.txt27 ├── rootfs.ext2
28 ├── rootfs.ext4 -> rootfs.ext2
/OK3568_Linux_fs/buildroot/board/friendlyarm/nanopi-m4/
H A Dreadme.txt20 ├── rootfs.ext2
21 ├── rootfs.ext4 -> rootfs.ext2
/OK3568_Linux_fs/buildroot/board/firefly/roc-rk3399-pc/
H A Dreadme.txt18 ├── rootfs.ext2
19 ├── rootfs.ext4 -> rootfs.ext2
/OK3568_Linux_fs/buildroot/package/usbmount/
H A D0003-usbmount.conf-Support-more-filesystems.patch21 -FILESYSTEMS="vfat ext2 ext3 ext4 hfsplus"
22 +FILESYSTEMS="vfat ext2 ext3 ext4 hfsplus ntfs exfat fuseblk"
/OK3568_Linux_fs/buildroot/board/freescale/common/imx/
H A Dgenimage.cfg.template7 # * a single root filesystem partition is required (ext2, ext3 or ext4)
39 image = "rootfs.ext2"
H A Dgenimage.cfg.template_no_boot_part_spl7 # * The first partition is expected to be an ext2 and have a /boot directory.
28 image = "rootfs.ext2"
H A Dgenimage.cfg.template_spl7 # * a single root filesystem partition is required (ext2, ext3 or ext4)
45 image = "rootfs.ext2"
/OK3568_Linux_fs/buildroot/board/freescale/common/mxs/
H A Dgenimage.cfg.template6 # * a single root filesystem partition is required (ext2, ext3 or ext4)
38 image = "rootfs.ext2"
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/packagegroups/
H A Dpackagegroup-base.bb20 ${@bb.utils.contains("MACHINE_FEATURES", "ext2", "packagegroup-base-ext2", "", d)} \
61 ${@bb.utils.contains('COMBINED_FEATURES', 'ext2', 'packagegroup-base-ext2', '',d)} \
157 SUMMARY:packagegroup-base-ext2 = "ext2 filesystem support"
158 RDEPENDS:packagegroup-base-ext2 = "\
162 RRECOMMENDS:packagegroup-base-ext2 = "\
/OK3568_Linux_fs/buildroot/board/friendlyarm/nanopc-t4/
H A Dreadme.txt20 ├── rootfs.ext2
21 ├── rootfs.ext4 -> rootfs.ext2
/OK3568_Linux_fs/kernel/drivers/net/vmxnet3/
H A Dvmxnet3_defs.h143 u32 ext2:1; member
153 u32 ext2:1; member
195 __le32 ext2; member
234 u32 ext2:1; member
250 u32 ext2:1;

12345678910>>...37