Lines Matching +full:man +full:- +full:pages
4 # SPDX-License-Identifier: MIT
26 Product: oe-core
31 …features = 'EXTRA_IMAGE_FEATURES = "ssh-server-openssh empty-root-password allow-empty-password al…
33 …features += 'EXTRA_USERS_PARAMS = "useradd -p \'\' {}; usermod -s /bin/sh {};"'.format(self.test_u…
36 # Build a core-image-minimal
37 bitbake('core-image-minimal')
39 with runqemu("core-image-minimal") as qemu:
52 Product: oe-core
57 … features = 'EXTRA_IMAGE_FEATURES = "ssh-server-openssh allow-empty-password allow-root-login"\n'
59 …features += 'EXTRA_USERS_PARAMS = "useradd -p \'\' {}; usermod -s /bin/sh {};"'.format(self.test_u…
62 # Build a core-image-minimal
63 bitbake('core-image-minimal')
65 with runqemu("core-image-minimal") as qemu:
81 Product: oe-core
88 …self.skipTest('neither opengl nor wayland present on DISTRO_FEATURES so core-image-weston cannot b…
90 # Build a core-image-weston
91 bitbake('core-image-weston')
96 Expected: 1. core-image-minimal can be build with bmap support
97 2. core-image-minimal is sparse
98 Product: oe-core
105 image = 'core-image-minimal'
122 # check if the resulting gzip is valid, --force is needed in case gzip_path is a symlink
123 self.assertTrue(runCmd('gzip --test --force %s' % gzip_path))
128 Expected: 1. core-image-minimal can be built with vmdk, vdi and
130 2. qemu-img says each image has the expected format
131 Product: oe-core
141 image = 'core-image-minimal'
153 sysroot = get_bb_var('STAGING_DIR_NATIVE', 'core-image-minimal')
154 result = runCmd('qemu-img info --output json %s' % image_path,
166 Expected: 1. core-image-minimal can be built with
167 ext4.bmap.gz.bz2.zst.xz.u-boot and also create a
170 Product: oe-core
174 conv = "ext4.bmap.gz.bz2.zst.xz.u-boot"
178 image = 'core-image-minimal'
189 self.assertTrue(runCmd('cd %s;sha256sum -c %s.%s.sha256sum' %
195 Expected: core-image-minimal can be built for various image types
196 Product: oe-core
199 image = 'core-image-minimal'
202 … skip_image_types = set(('container', 'elf', 'f2fs', 'tar.zst', 'wic.zst', 'squashfs-lzo', 'vfat'))
203 img_types = all_image_types - skip_image_types
208 MKUBIFS_ARGS ?= "-m 2048 -e 129024 -c 2047"
209 UBINIZE_ARGS ?= "-m 2048 -p 128KiB -s 512"
211 MKUBIFS_ARGS_mtd_2_128 ?= "-m 2048 -e 129024 -c 2047"
212 UBINIZE_ARGS_mtd_2_128 ?= "-m 2048 -p 128KiB -s 512"
214 MKUBIFS_ARGS_mtd_4_256 ?= "-m 4096 -e 253952 -c 4096"
215 UBINIZE_ARGS_mtd_4_256 ?= "-m 4096 -p 256KiB"
239 USERADDEXTENSION = "useradd-staticids"
241 USERADD_UID_TABLES += "files/static-passwd"
242 USERADD_GID_TABLES += "files/static-group"
245 bitbake("core-image-base")
256 PREFERRED_PROVIDER_virtual/base-utils = "packagegroup-core-base-utils"
257 VIRTUAL-RUNTIME_base-utils = "packagegroup-core-base-utils"
258 VIRTUAL-RUNTIME_base-utils-hwclock = "util-linux-hwclock"
259 VIRTUAL-RUNTIME_base-utils-syslog = ""
266 bitbake("--graphviz core-image-weston")
271 Expected: 1. core-image-minimal can be build with IMAGE_GEN_DEBUGFS variable set
274 Product: oe-core
279 image = 'core-image-minimal'
288 …dbg_tar_file = os.path.join(bb_vars['DEPLOY_DIR_IMAGE'], "%s-dbg.%s" % (bb_vars['IMAGE_LINK_NAME']…
292 result = runCmd('find %s -name %s' % (bb_vars['DEPLOY_DIR_IMAGE'], "udevadm"))
297 result = runCmd('objdump --syms %s | grep debug' % t)
302 image = 'test-empty-image'
313 Test that an image containing manpages has working man and apropos commands.
316 DISTRO_FEATURES:append = " api-documentation"
317 CORE_IMAGE_EXTRA_INSTALL = "man-pages"
320 bitbake("core-image-minimal")
322 with runqemu('core-image-minimal', ssh=False, runqemuparams='nographic') as qemu:
323 # This manpage is provided by man-pages
328 # This manpage is provided by man-pages
329 status, output = qemu.run_serial("man --pager=cat intro")
330 self.assertEqual(status, 1, 'Failed to run man: %s' % (output))