/openbmc/openbmc/poky/scripts/lib/wic/canned-wks/ |
H A D | directdisk-multi-rootfs.wks | 1 # short-description: Create multi rootfs image using rootfs plugin 3 # using rootfs plugin. 6 # - indirect rootfs references to image recipe(s): 8 # --rootfs-dir rootfs1=core-image-minimal 9 # --rootfs-dir rootfs2=core-image-minimal-dev 11 # - or paths to rootfs directories: 12 # wic create directdisk-multi-rootfs \ 13 # --rootfs-dir rootfs1=tmp/work/qemux86_64-poky-linux/core-image-minimal/1.0-r0/rootfs/ 14 # --rootfs-dir rootfs2=tmp/work/qemux86_64-poky-linux/core-image-minimal-dev/1.0-r0/rootfs/ 19 part / --source rootfs --rootfs-dir=rootfs1 --ondisk sda --fstype=ext4 --label platform --align 1024 [all …]
|
H A D | efi-bootdisk.wks.in | 2 part /boot --source rootfs --rootfs-dir=${IMAGE_ROOTFS}/boot --fstype=vfat --label boot --active --… 3 part / --source rootfs --fstype=ext4 --label root --align 1024 --exclude-path boot/
|
/openbmc/openbmc/poky/meta/recipes-core/initrdscripts/files/ |
H A D | init-live.sh | 188 mkdir -p /rootfs.ro /rootfs.rw 190 rm -rf /rootfs.ro /rootfs.rw 194 mkdir -p /rootfs.rw/upperdir /rootfs.rw/work 196 mkdir -p $ROOT_MOUNT/rootfs.ro $ROOT_MOUNT/rootfs.rw 197 mount --move /rootfs.ro $ROOT_MOUNT/rootfs.ro 198 mount --move /rootfs.rw $ROOT_MOUNT/rootfs.rw 202 mkdir -p /rootfs.ro /rootfs.rw 204 rm -rf /rootfs.ro /rootfs.rw 209 mkdir -p $ROOT_MOUNT/rootfs.ro $ROOT_MOUNT/rootfs.rw 210 mount --move /rootfs.ro $ROOT_MOUNT/rootfs.ro [all …]
|
H A D | init-install-efi-testfs.sh | 91 rootfs=/dev/${device}${part_prefix}2 96 echo "Rootfs partition size: $rootfs_size MB ($rootfs)" 109 echo "Creating rootfs partition on $rootfs" 120 echo "Formatting $rootfs to ext3..." 121 mkfs.ext3 -L "platform" $rootfs 130 mount $rootfs /ssd 170 sed -i "s@linux /vmlinuz *@linux /vmlinuz root=$rootfs rw $rootwait quiet @" $GRUBCFG 186 sed -i "s@options *@options root=$rootfs rw $rootwait quiet @" $SYSTEMDBOOT_CFGS
|
H A D | init-install-testfs.sh | 116 rootfs=/dev/${device}${part_prefix}2 121 echo "Rootfs partition size: $rootfs_size MB ($rootfs)" 133 echo "Creating rootfs partition on $rootfs" 144 echo "Formatting $rootfs to ext3..." 145 mkfs.ext3 -L "rootfs" $rootfs 155 mount $rootfs /tgt_root 188 linux /vmlinuz root=$rootfs $rootwait rw $5 $3 $4 quiet 206 echo "kernel /vmlinuz root=$rootfs rw $3 $4 quiet" >> /boot/grub/menu.lst
|
H A D | init-install.sh | 183 rootfs=${device}${part_prefix}2 188 rootfs=${device}${part_prefix}3 195 echo "Rootfs partition size: $rootfs_size MB ($rootfs)" 215 echo "Creating rootfs partition on $rootfs" 227 while [ $C -ne 3 ] && [ ! -e $bootfs -o ! -e $rootfs -o ! -e $swap ]; do 235 echo "Formatting $rootfs to ext4..." 236 mkfs.ext4 $rootfs 246 mount $rootfs /tgt_root 300 root_part_uuid=$(blkid -o value -s PARTUUID ${rootfs}) 323 echo "kernel /$kernel root=$rootfs rw $3 $4 quiet" >> /boot/grub/menu.lst
|
H A D | init-install-efi.sh | 174 rootfs=${device}${part_prefix}2 179 echo "Rootfs partition size: $rootfs_size MB ($rootfs)" 192 echo "Creating rootfs partition on $rootfs" 202 while [ $C -ne 3 ] && [ ! -e $bootfs -o ! -e $rootfs -o ! -e $swap ]; do 210 echo "Formatting $rootfs to ext4..." 211 mkfs.ext4 $rootfs 221 mount $rootfs /tgt_root 248 root_part_uuid=$(blkid -o value -s PARTUUID ${rootfs}) 264 rootuuid=$(blkid -o value -s PARTUUID ${rootfs})
|
/openbmc/openbmc/poky/meta-selftest/recipes-test/postinst/ |
H A D | postinst_1.0.bb | 6 PACKAGES = "${PN}-rootfs ${PN}-delayed-a ${PN}-delayed-b ${PN}-rootfs-failing" 8 ALLOW_EMPTY:${PN}-rootfs = "1" 11 ALLOW_EMPTY:${PN}-rootfs-failing = "1" 13 RDEPENDS:${PN}-delayed-a = "${PN}-rootfs" 18 # At rootfs time touch $TESTDIR/rootfs. Errors if the file already exists, or 20 pkg_postinst:${PN}-rootfs () { 24 echo "${PN}-rootfs should have finished at rootfs time" 28 if [ -e $D${TESTDIR}/rootfs ]; then 34 touch $D${TESTDIR}/rootfs 37 # Depends on rootfs, delays until first boot, verifies that the rootfs file was [all …]
|
/openbmc/openbmc/poky/scripts/lib/wic/ |
H A D | partition.py | 156 if os.path.isfile(rootfs): 157 os.remove(rootfs) 162 self.source_file = rootfs 218 if os.path.isfile(rootfs): 219 os.remove(rootfs) 264 self.source_file = rootfs 267 du_cmd = "du -Lbks %s" % rootfs 282 with open(rootfs, 'w') as sparse: 358 with open(rootfs, 'w') as sparse: 435 with open(rootfs, 'w') as sparse: [all …]
|
/openbmc/linux/drivers/gpu/drm/ci/ |
H A D | lava-submit.sh | 16 mkdir -p results/job-rootfs-overlay/ 18 cp artifacts/ci-common/capture-devcoredump.sh results/job-rootfs-overlay/ 19 cp artifacts/ci-common/init-*.sh results/job-rootfs-overlay/ 20 cp artifacts/ci-common/intel-gpu-freq.sh results/job-rootfs-overlay/ 21 cp "$SCRIPTS_DIR"/setup-test-env.sh results/job-rootfs-overlay/ 26 artifacts/ci-common/generate-env.sh | tee results/job-rootfs-overlay/set-job-env-vars.sh 29 tar zcf job-rootfs-overlay.tar.gz -C results/job-rootfs-overlay/ . 30 ci-fairy s3cp --token-file "${CI_JOB_JWT_FILE}" job-rootfs-overlay.tar.gz "https://${JOB_ROOTFS_OVE… 39 --rootfs-url-prefix "https://${BASE_SYSTEM_HOST_PATH}" \ 42 --job-rootfs-overlay-url "${FDO_HTTP_CACHE_URI:-}https://${JOB_ROOTFS_OVERLAY_PATH}" \
|
/openbmc/openbmc/poky/meta/recipes-core/initrdscripts/ |
H A D | initramfs-framework_1.0.bb | 13 file://rootfs \ 31 install -m 0755 ${WORKDIR}/rootfs ${D}/init.d/90-rootfs 67 initramfs-module-rootfs \ 76 # the rootfs, like 90-rootfs. To replace that default, use 77 # BAD_RECOMMENDATIONS += "initramfs-module-rootfs" in your 79 # something that runs earlier (for example, a 89-my-rootfs) 80 # and mounts the rootfs. Then 90-rootfs will proceed immediately. 81 RRECOMMENDS:${PN}-base += "initramfs-module-rootfs" 104 RDEPENDS:initramfs-module-rootfs = "${PN}-base" 105 FILES:initramfs-module-rootfs = "/init.d/90-rootfs" [all …]
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | fs-uuid.bbclass | 12 rootfs = d.getVar('ROOTFS') 13 output = subprocess.check_output(['tune2fs', '-l', rootfs], text=True) 17 bb.note('UUID of %s: %s' % (rootfs, uuid)) 19 bb.fatal('Could not determine filesystem UUID of %s' % rootfs) 21 # Replace the special <<uuid-of-rootfs>> inside a string (like the 23 # actual UUID of the rootfs. Does nothing if the special string 26 UUID_PLACEHOLDER = '<<uuid-of-rootfs>>'
|
H A D | core-image.bbclass | 10 # this gives us working (console only) rootfs. 35 …dev-pkgs - development packages (headers, etc.) for all installed packages in the rootfs 36 # - dbg-pkgs - debug symbol packages for all installed packages in the rootfs 37 # - lic-pkgs - license packages for all installed pacakges in the rootfs, requires 39 # - doc-pkgs - documentation packages for all installed packages in the rootfs 42 # - read-only-rootfs - tweaks an image to support read-only rootfs 43 # - stateless-rootfs - systemctl-native not run, image populated by systemd at runtime
|
/openbmc/openbmc/poky/meta-selftest/recipes-test/images/ |
H A D | wic-image-minimal.wks | 2 # long-description: This image contains boot partition and 3 rootfs partitions 6 part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024 --use-uuid 7 part /media --source rootfs --rootfs-dir=wic-image-minimal --ondisk sda --fstype=ext4 --label uuid-… 8 part /mnt --source rootfs --rootfs-dir=wic-image-minimal --ondisk sda --fstype=ext4 --label core --…
|
/openbmc/u-boot/board/keymile/scripts/ |
H A D | README | 7 run develop : setup environment to configure for rootfs via nfs 8 run ramfs : setup environment to configure for rootfs in ram 14 This file defines variables for working with rootfs via nfs for powerpc and 19 This file defines architecture specific variables for working with rootfs via 25 This file defines variables for working with rootfs inside the ram for powerpc 30 This file defines architecture specific variables for working with rootfs inside
|
/openbmc/openbmc/meta-security/recipes-core/initrdscripts/initramfs-framework-dm/ |
H A D | dmverity | 33 create rootfs \ 40 /dev/mapper/rootfs \ 84 create rootfs \ 91 /dev/mapper/rootfs \
|
/openbmc/openbmc/poky/scripts/esdk-tools/ |
H A D | runqemu | 155 self.rootfs = '' 356 self.rootfs = p 379 self.rootfs = p 557 self.rootfs = arg 685 if not self.rootfs: 693 if self.rootfs and not os.path.exists(self.rootfs): 698 elif not self.rootfs: 703 if not self.rootfs: 895 if self.rootfs and not os.path.exists(self.rootfs): 1051 if not (self.rootfs and os.path.isdir(self.rootfs)): [all …]
|
/openbmc/openbmc/poky/scripts/ |
H A D | runqemu | 155 self.rootfs = '' 356 self.rootfs = p 379 self.rootfs = p 557 self.rootfs = arg 685 if not self.rootfs: 693 if self.rootfs and not os.path.exists(self.rootfs): 698 elif not self.rootfs: 703 if not self.rootfs: 895 if self.rootfs and not os.path.exists(self.rootfs): 1051 if not (self.rootfs and os.path.isdir(self.rootfs)): [all …]
|
/openbmc/openbmc/poky/scripts/tiny/ |
H A D | dirsize.py | 68 rootfs = Record.create(".") 69 total = rootfs.show(minsize) 71 (total, rootfs.size, 100 * float(total) / rootfs.size))
|
/openbmc/u-boot/configs/ |
H A D | apf27_defconfig | 12 …2K(env),512K(env2),512K(firmware),512K(dtb),5M(kernel),-(rootfs) ubi.mtd=rootfs root=ubi0:rootfs r… 36 …tdparts=mxc_nand.0:1M(u-boot)ro,512K(env),512K(env2),512K(firmware),512K(dtb),5M(kernel),-(rootfs)"
|
/openbmc/openbmc/poky/meta/lib/oeqa/core/target/ |
H A D | qemu.py | 22 port=None, machine='', rootfs='', kernel='', kvm=False, slirp=False, argument 33 self.rootfs = rootfs 42 self.runner = QemuRunner(machine=machine, rootfs=rootfs, tmpdir=tmpdir,
|
/openbmc/linux/arch/arm/boot/dts/microchip/ |
H A D | at91-wb45n.dtsi | 16 bootargs = "ubi.mtd=6 root=ubi0:rootfs rootfstype=ubifs rw"; 99 rootfs-a@5e0000 { 100 label = "rootfs-a"; 104 rootfs-b@2be0000 { 105 label = "rootfs-b";
|
/openbmc/openbmc/meta-aspeed/wic/ |
H A D | emmc-aspeed.wks.in | 27 part --fstype=ext4 --fixed-size 1G --source rootfs --label rofs-a 28 part --fstype=ext4 --fixed-size 1G --source rootfs --label rofs-b 30 part --fstype=ext4 --fixed-size ${WKS_HOSTFW_SIZE} --source rootfs --rootfs-dir=${DEPLOY_DIR_IMAGE}…
|
/openbmc/openbmc/meta-evb/meta-evb-arm/meta-evb-fvp-base/wic/ |
H A D | emmc-fvp.wks.in | 27 part --fstype=ext4 --fixed-size 1G --source rootfs --label rofs-a 28 part --fstype=ext4 --fixed-size 1G --source rootfs --label rofs-b 30 #part --fstype=ext4 --fixed-size ${WKS_HOSTFW_SIZE} --source rootfs --rootfs-dir=${DEPLOY_DIR_IMAGE…
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | qemutinyrunner.py | 22 …def __init__(self, machine, rootfs, display, tmpdir, deploy_dir_image, logfile, kernel, boottime, … argument 34 self.rootfs = rootfs 74 if not os.path.exists(self.rootfs): 75 bb.error("Invalid rootfs %s" % self.rootfs) 96 …launch_cmd = 'qemu-system-i386 -kernel %s -initrd %s %s' % (self.kernel, self.rootfs, self.qemupar…
|