Home
last modified time | relevance | path

Searched full:ext2 (Results 1 – 25 of 140) sorted by relevance

123456

/openbmc/openbmc/poky/meta/recipes-devtools/syslinux/syslinux/
H A D0001-linux-syslinux-support-ext2-3-4-device.patch4 Subject: [PATCH] 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.
50 +ext2_filsys e2fs = NULL; /* Ext2/3/4 filesystem */
138 /* The install func for ext2, ext3 and ext4 */
H A D0009-linux-syslinux-implement-install_bootblock.patch7 linux/syslinux.c's install_bootblock() which only supports ext2/3/4.
34 + "no ext2/3/4 superblock found on %s\n", device);
/openbmc/u-boot/include/
H A Dext_common.h9 * ext2 ls load support in Uboot
15 * based on code from grub2 fs/ext2.c and fs/fshelp.c by
25 /* Magic value used to identify an ext2 filesystem. */
47 /* The size of an ext2 block in bytes. */
50 /* Log2 size of ext2 block in bytes. */
64 /* The ext2 superblock. */
157 /* The ext2 inode. */
188 /* The header of an ext2 directory entry. */
203 /* Information about a "mounted" ext2 filesystem. */
/openbmc/openbmc/poky/meta/recipes-devtools/e2fsprogs/
H A De2fsprogs.inc1 SUMMARY = "Ext2 Filesystem Utilities"
2 DESCRIPTION = "The Ext2 Filesystem Utilities (e2fsprogs) contain all of the standard utilities for …
3 fixing, configuring , and debugging ext2 filesystems."
22 SRC_URI = "git://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git;branch=master;protocol=https"
H A De2fsprogs_1.47.1.bb66 for i in mke2fs mkfs.ext2 mkfs.ext3 mkfs.ext4; do
81 mv ${D}${base_sbindir}/mkfs.ext2 ${D}${base_sbindir}/mkfs.ext2.e2fsprogs
114 ALTERNATIVE:${PN}-mke2fs = "mke2fs mkfs.ext2"
116 ALTERNATIVE_LINK_NAME[mkfs.ext2] = "${base_sbindir}/mkfs.ext2"
/openbmc/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
H A DREADME.nokia_rx5114 uImage or boot.scr from a fat, ext2/ext3 or ext4 filesystem in external
41 * 2. same as 1. but for ext2/3 partition
71 * parition type ${mmctype} (fat, ext2)
H A DREADME.qemu-mips89 8) Generate ext2 on part 2 on Copy uImage and initrd.gz
93 # Format as ext2 ( arg2 : nb blocks)
97 # mount -o loop,offset=16450560 -t ext2 ide /mnt
131 10) Now you can boot from flash, ide, ide+ext2 and tfp
/openbmc/openbmc/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
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Inventory/Item/
H A DVolume.interface.yaml18 Type of filesystem, e.g. ext2, ext3, ext4, vfat.
113 - name: ext2
115 Filesystem type ext2
/openbmc/openbmc/poky/meta/recipes-core/packagegroups/
H A Dpackagegroup-base.bb18 ${@bb.utils.contains("MACHINE_FEATURES", "ext2", "packagegroup-base-ext2", "", d)} \
55 ${@bb.utils.contains('COMBINED_FEATURES', 'ext2', 'packagegroup-base-ext2', '',d)} \
145 SUMMARY:packagegroup-base-ext2 = "ext2 filesystem support"
146 RDEPENDS:packagegroup-base-ext2 = "\
150 RRECOMMENDS:packagegroup-base-ext2 = "\
/openbmc/openbmc/meta-evb/meta-evb-nuvoton/meta-evb-npcm845/conf/machine/
H A Devb-npcm845.conf39 DISTRO_FEATURES:append = " ext2 tpm"
40 MACHINE_FEATURES:append = " ext2 tpm2"
/openbmc/openbmc/meta-nuvoton/conf/machine/
H A Devb-npcm845.conf39 DISTRO_FEATURES:append = " ext2 tpm"
40 MACHINE_FEATURES:append = " ext2 tpm2"
/openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-utils/e2tools/
H A De2tools_0.1.2.bb1 SUMMARY = "Set of GPL'ed utilities to ext2/ext3 filesystem."
3 and manipulate files in an ext2/ext3 filesystem. These utilities access a \
/openbmc/u-boot/cmd/
H A Dext2.c46 "load binary file from a Ext2 filesystem",
49 " to address 'addr' from ext2 filesystem."
/openbmc/u-boot/fs/ext4/
H A Ddev.c8 * made from existing ext2/dev.c file of Uboot
22 * fs/ext2/dev.c file in uboot.
H A Dext4_common.h8 * ext4ls and ext4load : based on ext2 ls load support in Uboot.
14 * based on code from grub2 fs/ext2.c and fs/fshelp.c by
/openbmc/openbmc/meta-security/meta-hardening/conf/distro/
H A Dharden.conf5 DISTRO_FEATURES = " acl xattr pci ext2 pam ipv4 ipv6 ipsec largefile usbhost"
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dimage_types.bbclass99 IMAGE_CMD:ext2 = "oe_mkext234fs ext2 ${EXTRA_IMAGECMD}"
276 EXTRA_IMAGECMD:ext2 ?= "-i 4096"
312 ext2 ext2.gz ext2.bz2 ext2.lzma \
384 RUNNABLE_IMAGE_TYPES ?= "ext2 ext3 ext4"
/openbmc/openbmc/poky/meta/recipes-core/initrdscripts/initramfs-framework/
H A De2fs10 filesystems="ext4 ext3 ext2"
/openbmc/openbmc/poky/meta/conf/machine/include/x86/
H A Dx86-base.inc8 MACHINE_FEATURES += "screen keyboard pci usbhost ext2 ext3 x86 \
/openbmc/qemu/docs/system/ppc/
H A Dppce500.rst174 CFI flash. Given an ext2 image whose size must be a power of two, it can be used
182 -drive if=pflash,file=/path/to/rootfs.ext2,format=raw \
194 -drive id=mydrive,if=none,file=/path/to/rootfs.ext2,format=raw \
/openbmc/openbmc/poky/meta-poky/conf/distro/
H A Dpoky-tiny.conf27 # [ ] Modify the runqemu scripts to work with ext2 parameter:
65 # alsa bluetooth ext2 pcmcia usbgadget usbhost wifi nfs zeroconf pci

123456