| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/xscreensaver/files/ |
| H A D | 0001-Tweak-app-defaults.patch | 50 - maze -root \n\ 51 -@GL_KLUDGE@ GL: superquadrics -root \n\ 52 - attraction -root \n\ 53 - blitspin -root \n\ 54 - greynetic -root \n\ 55 - helix -root \n\ 56 - hopalong -root \n\ 57 - imsmap -root \n\ 58 -- noseguy -root \n\ 59 -- pyro -root \n\ [all …]
|
| /openbmc/openbmc/poky/meta/lib/oeqa/files/ |
| H A D | buildhistory_filelist2.txt | 1 drwxr-xr-x root root 4096 ./bin 2 lrwxrwxrwx root root 19 ./bin/ash -> /bin/busybox.nosuid 3 lrwxrwxrwx root root 25 ./bin/base64 -> /usr/bin/base64.coreutils 4 -rwxr-xr-x root root 1190872 ./bin/bash.bash 5 lrwxrwxrwx root root 14 ./bin/bash -> /bin/bash.bash 6 lrwxrwxrwx root root 14 ./bin/busybox -> busybox.nosuid 7 -rwxr-xr-x root root 613008 ./bin/busybox.nosuid 8 -rwsr-xr-x root root 59440 ./bin/busybox.suid 9 lrwxrwxrwx root root 18 ./bin/cat -> /bin/cat.coreutils 10 -rwxr-xr-x root root 47336 ./bin/cat.coreutils [all …]
|
| H A D | buildhistory_filelist1.txt | 1 drwxr-xr-x root root 4096 ./bin 2 lrwxrwxrwx root root 19 ./bin/ash -> /bin/busybox.nosuid 3 lrwxrwxrwx root root 25 ./bin/base64 -> /usr/bin/base64.coreutils 4 -rwxr-xr-x root root 1190872 ./bin/bash.bash 5 lrwxrwxrwx root root 14 ./bin/bash -> /bin/bash.bash 6 lrwxrwxrwx root root 14 ./bin/busybox -> busybox.nosuid 7 -rwxr-xr-x root root 613008 ./bin/busybox.nosuid 8 -rwsr-xr-x root root 59440 ./bin/busybox.suid 9 lrwxrwxrwx root root 18 ./bin/cat -> /bin/cat.coreutils 10 -rwxr-xr-x root root 47336 ./bin/cat.coreutils [all …]
|
| /openbmc/openbmc/poky/meta/files/ |
| H A D | fs-perms.txt | 25 # /usr/src 0755 root root false - - - 26 # /usr/share/man 0755 root root true 0644 root root 28 # Note: all standard config directories are automatically assigned "0755 root root false - - -" 31 ${mandir} 0755 root root true 0644 root root 32 ${infodir} 0755 root root true 0644 root root 33 ${docdir} 0755 root root true 0644 root root 34 ${datadir}/gtk-doc 0755 root root true 0644 root root 37 ${datadir}/locale 0755 root root true 0644 root root 40 ${includedir} 0755 root root true 0644 root root 43 /usr/src/debug 0755 root root true 0644 root root [all …]
|
| H A D | device_table-minimal.txt | 11 /dev d 755 root root - - - - - 12 /dev/console c 662 root tty 5 1 - - - 13 /dev/fb0 c 600 root root 29 0 - - - 14 /dev/hda b 660 root disk 3 0 - - - 15 /dev/hda b 660 root disk 3 1 1 1 4 16 /dev/kmem c 640 root kmem 1 2 - - - 17 /dev/kmsg c 600 root root 1 11 - - - 18 /dev/mem c 640 root kmem 1 1 - - - 19 /dev/mmcblk0 b 660 root disk 179 0 - - - 20 /dev/mmcblk0p b 660 root disk 179 1 1 1 4 [all …]
|
| H A D | fs-perms-volatile-tmp.txt | 25 # /usr/src 0755 root root false - - - 26 # /usr/share/man 0755 root root true 0644 root root 28 # Note: all standard config directories are automatically assigned "0755 root root false - - -" 38 ${localstatedir}/volatile/tmp 01777 root root false - - -
|
| /openbmc/qemu/scripts/ |
| H A D | xml-preprocess-test.py | 25 temp_file.write("<root></root>") 28 self.assertEqual(result, "<root></root>") 34 xmlpp.save_xml("<root></root>", temp_file_name) 52 xml_str = "<root>$(env.TEST_ENV_VAR)</root>" 53 expected = "<root>TestValue</root>" 60 xml_str = "<root>$(sys.ARCH)</root>" 61 expected = f"<root>{platform.architecture()[0]}</root>" 68 xml_str = "<root>$(var.USER)</root>" 69 expected = "<root></root>" 73 xml_str = "<?define USER=FOO?><root>$(var.USER)</root>" [all …]
|
| /openbmc/openbmc/poky/meta/recipes-core/initscripts/initscripts-1.0/ |
| H A D | volatiles | 14 # l root root 0777 /var/test /tmp/testfile 15 # f root root 0644 /var/test none 26 d root root 1777 /run/lock none 27 d root root 0755 /var/volatile/log none 28 d root root 1777 /var/volatile/tmp none 29 l root root 1777 /var/lock /run/lock 30 l root root 0755 /var/run /run 31 l root root 1777 /var/tmp /var/volatile/tmp 32 l root root 1777 /tmp /var/tmp 33 d root root 0755 /var/lock/subsys none [all …]
|
| /openbmc/qemu/tests/unit/ |
| H A D | test-interval-tree.c | 13 static IntervalTreeRoot root; variable 33 g_assert(root.rb_root.rb_node == NULL); in test_empty() 34 g_assert(root.rb_leftmost == NULL); in test_empty() 35 g_assert(interval_tree_iter_first(&root, 0, UINT64_MAX) == NULL); in test_empty() 44 interval_tree_insert(&nodes[0], &root); in test_find_one_point() 46 g_assert(interval_tree_iter_first(&root, 0, 9) == &nodes[0]); in test_find_one_point() 48 g_assert(interval_tree_iter_first(&root, 0, 0) == NULL); in test_find_one_point() 50 g_assert(interval_tree_iter_first(&root, 0, 1) == &nodes[0]); in test_find_one_point() 51 g_assert(interval_tree_iter_first(&root, 1, 1) == &nodes[0]); in test_find_one_point() 52 g_assert(interval_tree_iter_first(&root, 1, 2) == &nodes[0]); in test_find_one_point() [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/systemd/systemd-systemctl/ |
| H A D | systemctl | 18 ROOT = Path("/") variable 28 def __init__(self, root, path): argument 30 self._parse(root, path) 33 for path2 in sorted((root / location / "system" / dirname).glob("*.conf")): 34 self._parse(root, path2) 36 def _parse(self, root, path): argument 52 # broken symlink, try relative to root 53 path = root / Path(os.readlink(str(path))).relative_to(ROOT) 98 def __init__(self, scope, root): argument 100 self._collect_presets(scope, root) [all …]
|
| /openbmc/qemu/include/qemu/ |
| H A D | interval-tree.h | 47 * @root: root of the tree. 51 static inline bool interval_tree_is_empty(const IntervalTreeRoot *root) in interval_tree_is_empty() argument 53 return root->rb_root.rb_node == NULL; in interval_tree_is_empty() 59 * @root: root of the tree. 61 * Insert @node into @root, and rebalance. 63 void interval_tree_insert(IntervalTreeNode *node, IntervalTreeRoot *root); 68 * @root: root of the tree. 70 * Remove @node from @root, and rebalance. 72 void interval_tree_remove(IntervalTreeNode *node, IntervalTreeRoot *root); 76 * @root: root of the tree, [all …]
|
| /openbmc/openbmc/poky/meta/recipes-core/busybox/files/ |
| H A D | inetd.conf | 11 #echo stream tcp nowait root internal 12 #echo dgram udp wait root internal 13 #chargen stream tcp nowait root internal 14 #chargen dgram udp wait root internal 15 #discard stream tcp nowait root internal 16 #discard dgram udp wait root internal 17 #daytime stream tcp nowait root internal 18 #daytime dgram udp wait root internal 19 #time stream tcp nowait root internal 20 #time dgram udp wait root internal
|
| /openbmc/qemu/hw/pci-host/ |
| H A D | designware.c | 64 * Designware has only a single root complex. Enforce the limit on the in designware_pcie_root_bus_class_init() 71 designware_pcie_root_to_host(DesignwarePCIERoot *root) in designware_pcie_root_to_host() argument 73 BusState *bus = qdev_get_parent_bus(DEVICE(root)); in designware_pcie_root_to_host() 97 DesignwarePCIERoot *root = DESIGNWARE_PCIE_ROOT(opaque); in designware_pcie_root_msi_write() local 98 DesignwarePCIEHost *host = designware_pcie_root_to_host(root); in designware_pcie_root_msi_write() 100 root->msi.intr[0].status |= BIT(val) & root->msi.intr[0].enable; in designware_pcie_root_msi_write() 102 if (root->msi.intr[0].status & ~root->msi.intr[0].mask) { in designware_pcie_root_msi_write() 117 static void designware_pcie_root_update_msi_mapping(DesignwarePCIERoot *root) in designware_pcie_root_update_msi_mapping() argument 120 MemoryRegion *mem = &root->msi.iomem; in designware_pcie_root_update_msi_mapping() 121 const uint64_t base = root->msi.base; in designware_pcie_root_update_msi_mapping() [all …]
|
| /openbmc/openbmc/poky/meta/recipes-connectivity/resolvconf/resolvconf/ |
| H A D | 99_resolvconf | 1 d root root 0755 /var/run/resolvconf/interface none 2 f root root 0644 /etc/resolvconf/run/resolv.conf none 3 f root root 0644 /etc/resolvconf/run/enable-updates none 4 l root root 0644 /etc/resolv.conf /etc/resolvconf/run/resolv.conf
|
| /openbmc/openbmc/meta-security/recipes-ids/ossec/files/ |
| H A D | 0002-Makefile-don-t-set-uid-gid.patch | 30 - $(call INSTALL_CMD,0550,root,0) ossec-agentd ${PREFIX}/bin 31 - $(call INSTALL_CMD,0550,root,0) agent-auth ${PREFIX}/bin 44 - $(call INSTALL_CMD,0550,root,${OSSEC_GROUP}) -d ${PREFIX}/ 48 - $(call INSTALL_CMD,0550,root,0) -d ${PREFIX}/bin 49 - $(call INSTALL_CMD,0550,root,0) ossec-logcollector ${PREFIX}/bin 50 - $(call INSTALL_CMD,0550,root,0) ossec-syscheckd ${PREFIX}/bin 51 - $(call INSTALL_CMD,0550,root,0) ossec-execd ${PREFIX}/bin 52 - $(call INSTALL_CMD,0550,root,0) manage_agents ${PREFIX}/bin 53 - $(call INSTALL_CMD,0550,root,0) ../contrib/util.sh ${PREFIX}/bin/ 54 - $(call INSTALL_CMD,0550,root,0) ${OSSEC_CONTROL_SRC} ${PREFIX}/bin/ossec-control [all …]
|
| /openbmc/openbmc/poky/meta/lib/oe/ |
| H A D | cachedpath.py | 157 def __is_path_below(self, file, root): argument 158 return (file + os.path.sep).startswith(root) 160 def __realpath_rel(self, start, rel_path, root, loop_cnt, assume_dir): argument 162 'root'; no part of 'start' below 'root' must contain symlinks. """ 170 if len(start) >= len(root): 171 # do not follow '..' before root 178 root, loop_cnt, assume_dir) 180 assert(self.__is_path_below(start, root)) 184 def __realpath(self, file, root, loop_cnt, assume_dir): argument 185 while self.islink(file) and len(file) >= len(root): [all …]
|
| /openbmc/openbmc-test-automation/openpower/ext_interfaces/ |
| H A D | test_vmicert_management.robot | 51 Get Root Certificate Using Different Privilege Users Role 52 [Documentation] Get root certificate using different users. 54 [Template] Get Root Certificate 57 # Request root certificate from admin user. 60 # Request root certificate from operator user. 63 # Request root certificate from ReadOnly user. 66 # Request root certificate from NoAccess user. 109 Get Root Certificate When VMI Is Off And Verify 110 [Documentation] Get root certificate when vmi is off and verify. 115 [Template] Get Root Certificate [all …]
|
| /openbmc/qemu/docs/ |
| H A D | pcie.txt | 34 PCI Express devices should be plugged only into PCI Express Root Ports and 37 2.1 Root Bus (pcie.0) 39 Place only the following kinds of devices directly on the Root Complex: 42 the Root Complex. These will be considered Integrated Endpoints. 47 devices with the Root Complex. Guest OSes are suspected to behave 49 with the Root Complex. 51 (2) PCI Express Root Ports (pcie-root-port), for starting exclusively 57 (4) Extra Root Complexes (pxb-pcie), if multiple PCI Express Root Buses 64 | PCI Dev | | PCIe Root Port | | PCIe-PCI Bridge | | pxb-pcie | 67 2.1.1 To plug a device into pcie.0 as a Root Complex Integrated Endpoint use: [all …]
|
| /openbmc/openbmc/poky/meta/recipes-connectivity/bind/bind/ |
| H A D | conf.patch | 17 conf/db.root | 45 ++++++++++++++++++++++++++ 29 create mode 100644 conf/db.root 46 +@ IN SOA localhost. root.localhost. ( 64 +@ IN SOA localhost. root.localhost. ( 83 +@ IN SOA localhost. root.localhost. ( 103 +@ IN SOA localhost. root.localhost. ( 121 +@ IN SOA localhost. root.localhost. ( 130 diff --git a/conf/db.root b/conf/db.root 134 +++ b/conf/db.root 137 +; <<>> DiG 9.2.3 <<>> ns . @a.root-servers.net. [all …]
|
| /openbmc/hiomapd/vpnor/test/ |
| H A D | tmpd.hpp | 37 root = fs::path{tmpdir}; in VpnorRoot() 41 fs::create_directory(root / attr); in VpnorRoot() 44 fs::path tocFilePath = root / "ro" / PARTITION_TOC_FILE; in VpnorRoot() 54 fs::path partitionFilePath = root / "ro" / part.data.name; in VpnorRoot() 64 snprintf(paths.ro_loc, PATH_MAX - 1, "%s/ro", root.c_str()); in VpnorRoot() 66 snprintf(paths.rw_loc, PATH_MAX - 1, "%s/rw", root.c_str()); in VpnorRoot() 68 snprintf(paths.prsv_loc, PATH_MAX - 1, "%s/prsv", root.c_str()); in VpnorRoot() 70 snprintf(paths.patch_loc, PATH_MAX - 1, "%s/patch", root.c_str()); in VpnorRoot() 87 fs::remove_all(root); in ~VpnorRoot() 91 return fs::path{root} / "ro"; in ro() [all …]
|
| /openbmc/openbmc/poky/documentation/dev-manual/ |
| H A D | read-only-rootfs.rst | 3 Creating a Read-Only Root Filesystem 7 root filesystem's write permissions (i.e. you need a read-only root 14 Supporting a read-only root filesystem requires that the system and 15 applications do not try to write to the root filesystem. You must 17 gracefully fail in the event of attempting to write to the root 20 Creating the Root Filesystem 23 To create the read-only root filesystem, simply add the 42 Post-Installation Scripts and Read-Only Root Filesystem 47 image can be run at the time when the root filesystem is created during 52 still need to be run after the root filesystem is created, the build [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/iptraf/iptraf-ng/ |
| H A D | iptraf-ng-tmpfiles.conf | 1 d /run/iptraf-ng 0755 root root - 2 d /var/log/iptraf-ng 0755 root root - 3 d /var/lib/iptraf-ng 0755 root root -
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/oprofile/oprofile/ |
| H A D | 0010-oprofile-Determine-the-root-home-directory-dynamical.patch | 4 Subject: [PATCH 10/10] oprofile: Determine the root home directory dynamically 6 This commit detects the root home directory dynamically with changes to 10 'non-standard' root home directory at build time. The advantage of this 12 path to ~root, not the build time path. 27 - with this option, your current working directory should be <filename>/root</filename> or a subdi… 28 - of <filename>/root</filename> to avoid storing sample data files in locations accessible by regu… 29 + with this option, your current working directory should be <filename>~root</filename> or a subdi… 30 + of <filename>~root</filename> to avoid storing sample data files in locations accessible by regu… 40 - with this option, your current working directory should be <code class="filename">/root</code> o… 41 - of <code class="filename">/root</code> to avoid storing sample data files in locations accessibl… [all …]
|
| /openbmc/u-boot/fs/btrfs/ |
| H A D | btrfs.c | 15 static int readdir_callback(const struct btrfs_root *root, in readdir_callback() argument 34 if (btrfs_lookup_inode(root, &item->location, &inode, NULL)) { in readdir_callback() 47 if (target && btrfs_readlink(root, item->location.objectid, in readdir_callback() 94 btrfs_info.tree_root.bytenr = btrfs_info.sb.root; in btrfs_probe() 114 struct btrfs_root root = btrfs_info.fs_root; in btrfs_ls() local 118 inr = btrfs_lookup_path(&root, root.root_dirid, path, &type, NULL, 40); in btrfs_ls() 130 if (btrfs_readdir(&root, inr, readdir_callback)) { in btrfs_ls() 140 struct btrfs_root root = btrfs_info.fs_root; in btrfs_exists() local 144 inr = btrfs_lookup_path(&root, root.root_dirid, file, &type, NULL, 40); in btrfs_exists() 151 struct btrfs_root root = btrfs_info.fs_root; in btrfs_size() local [all …]
|
| /openbmc/bmcweb/redfish-core/src/utils/ |
| H A D | json_utils.cpp | 42 uint64_t getEstimatedJsonSize(const nlohmann::json& root) in getEstimatedJsonSize() argument 44 if (root.is_null()) in getEstimatedJsonSize() 48 if (root.is_number()) in getEstimatedJsonSize() 52 if (root.is_boolean()) in getEstimatedJsonSize() 56 if (root.is_string()) in getEstimatedJsonSize() 59 return root.get<std::string>().size() + quotesSize; in getEstimatedJsonSize() 61 if (root.is_binary()) in getEstimatedJsonSize() 63 return root.get_binary().size(); in getEstimatedJsonSize() 66 root.get_ptr<const nlohmann::json::array_t*>(); in getEstimatedJsonSize() 77 root.get_ptr<const nlohmann::json::object_t*>(); in getEstimatedJsonSize()
|