/openbmc/openbmc/poky/scripts/lib/wic/ |
H A D | ksparser.py | 229 if parsed.fsuuid: 242 if parsed.fsuuid: 243 if parsed.fsuuid.upper().startswith('0X'): 244 if len(parsed.fsuuid) > 10: 249 % (confpath, lineno, parsed.fsuuid, parsed.fstype) 251 elif len(parsed.fsuuid) > 8: 256 % (confpath, lineno, parsed.fsuuid, parsed.fstype)
|
H A D | partition.py | 56 self.fsuuid = args.fsuuid 295 (self.fstype, extraopts, rootfs, label_str, self.fsuuid, rootfs_dir) 346 if self.fsuuid: 347 namespace = uuid.UUID(self.fsuuid) 373 self.mkfs_extraopts, self.fsuuid, rootfs) 396 (label_str, self.fsuuid, size_str, extraopts, rootfs, 429 (extraopts, self.fsuuid, rootfs, rootfs_dir) 454 (self.fstype, extraopts, label_str, self.fsuuid, rootfs) 473 (self.fstype, self.size * 1024, label_str, self.fsuuid, 493 (label_str, self.fsuuid, extraopts, size_str, rootfs, [all …]
|
/openbmc/openbmc/poky/scripts/lib/wic/plugins/imager/ |
H A D | direct.py | 124 if part.fsuuid: 126 if len(part.fsuuid) == 10: 128 (part.fsuuid[2:6], part.fsuuid[6:]) 130 device_name = "UUID=%s" % part.fsuuid 357 if not part.fsuuid: 359 part.fsuuid = '0x' + str(uuid.uuid4())[:8].upper() 361 part.fsuuid = str(uuid.uuid4()) 365 if part.fsuuid.upper().startswith("0X"): 366 part.fsuuid = '0x' + part.fsuuid.upper()[2:].rjust(8,"0") 368 part.fsuuid = '0x' + part.fsuuid.upper().rjust(8,"0")
|
/openbmc/linux/include/uapi/linux/ |
H A D | ext4.h | 34 #define EXT4_IOC_GETFSUUID _IOR('f', 44, struct fsuuid) 35 #define EXT4_IOC_SETFSUUID _IOW('f', 44, struct fsuuid) 75 struct fsuuid { struct
|
/openbmc/linux/fs/ext4/ |
H A D | ioctl.c | 1164 struct fsuuid __user *ufsuuid) in ext4_ioctl_getuuid() 1166 struct fsuuid fsuuid; in ext4_ioctl_getuuid() local 1169 if (copy_from_user(&fsuuid, ufsuuid, sizeof(fsuuid))) in ext4_ioctl_getuuid() 1172 if (fsuuid.fsu_len == 0) { in ext4_ioctl_getuuid() 1173 fsuuid.fsu_len = UUID_SIZE; in ext4_ioctl_getuuid() 1174 if (copy_to_user(&ufsuuid->fsu_len, &fsuuid.fsu_len, in ext4_ioctl_getuuid() 1175 sizeof(fsuuid.fsu_len))) in ext4_ioctl_getuuid() 1180 if (fsuuid.fsu_len < UUID_SIZE || fsuuid.fsu_flags != 0) in ext4_ioctl_getuuid() 1187 fsuuid.fsu_len = UUID_SIZE; in ext4_ioctl_getuuid() 1188 if (copy_to_user(ufsuuid, &fsuuid, sizeof(fsuuid)) || in ext4_ioctl_getuuid() [all …]
|
/openbmc/u-boot/cmd/ |
H A D | fs_uuid.c | 19 fsuuid, 4, 1, do_fs_uuid_wrapper,
|
H A D | Kconfig | 1788 bool "fsuuid command" 1790 Enables fsuuid command for filesystem UUID.
|
/openbmc/openbmc/meta-security/meta-integrity/recipes-security/ima_policy_hashed/files/ |
H A D | ima_policy_hashed | 64 # dont_measure fsuuid=a11234... 65 # dont_appraise fsuuid=a11243...
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | ima_policy | 25 base: [[func=] [mask=] [fsmagic=] [fsuuid=] [fsname=] 42 fsuuid:= file system UUID (e.g 8bcbe394-4f13-4144-be8e-5aa9ea2ce2f6) 189 either based on a filesystem's UUID (fsuuid) or based on LSM
|
/openbmc/openbmc/poky/meta-selftest/recipes-test/images/ |
H A D | wic-image-minimal.wks | 7 …l --ondisk sda --fstype=ext4 --label uuid-test --align 1024 --use-uuid --fsuuid 2c71ef06-a81d-4735…
|
/openbmc/openbmc/poky/scripts/lib/wic/plugins/source/ |
H A D | bootimg-pcbios.py | 192 (label, part.fsuuid, bootimg, blocks)
|
H A D | bootimg-efi.py | 412 (label, part.fsuuid, bootimg, blocks)
|
/openbmc/linux/security/integrity/ima/ |
H A D | ima_policy.c | 105 uuid_t fsuuid; member 604 !uuid_equal(&rule->fsuuid, &inode->i_sb->s_uuid)) in ima_match_rules() 1626 if (!uuid_is_null(&entry->fsuuid)) { in ima_parse_rule() 1631 result = uuid_parse(args[0].from, &entry->fsuuid); in ima_parse_rule() 2153 seq_printf(m, "fsuuid=%pU", &entry->fsuuid); in ima_policy_show()
|
/openbmc/openbmc/poky/documentation/ref-manual/ |
H A D | kickstart.rst | 190 - ``--fsuuid``: This option is a Wic-specific option that specifies
|