Home
last modified time | relevance | path

Searched refs:dnf (Results 1 – 25 of 43) sorted by relevance

12

/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/dnf/
H A Ddnf_4.11.1.bb5 HOMEPAGE = "https://github.com/rpm-software-management/dnf"
11 SRC_URI = "git://github.com/rpm-software-management/dnf.git;branch=master;protocol=https \
18 file://0001-dnf-write-the-log-lock-to-root.patch \
61 # Create a symlink called 'dnf' as 'make install' does not do it, but
62 # .spec file in dnf source tree does (and then Fedora and dnf documentation
63 # says that dnf binary is plain 'dnf').
65 ln -rs ${D}/${bindir}/dnf-3 ${D}/${bindir}/dnf
66 ln -rs ${D}/${bindir}/dnf-automatic-3 ${D}/${bindir}/dnf-automatic
69 # Direct dnf-native to read rpm configuration from our sysroot, not the one it was compiled in
71 create_wrapper ${D}/${bindir}/dnf \
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/dnf-plugin-tui/
H A Ddnf-plugin-tui_git.bb1 SUMMARY = "A text-based user interface plugin of dnf for user to manage packages. "
6 SRC_URI = "git://github.com/ubinux/dnf-plugin-tui.git;branch=master;protocol=https"
17 install -d ${D}${datadir}/dnf
18 install -m 0755 ${S}/samples/* ${D}${datadir}/dnf
19 install -d ${D}${PYTHON_SITEPACKAGES_DIR}/dnf-plugins/mkimg
20 install -m 0755 ${S}/dnf-plugins/mkimg/* ${D}${PYTHON_SITEPACKAGES_DIR}/dnf-plugins/mkimg
21 for file in $(ls ${S}/dnf-plugins/ | grep -v mkimg); do
22 install -m 0755 ${S}/dnf-plugins/$file ${D}${PYTHON_SITEPACKAGES_DIR}/dnf-plugins
31 FILES:${PN} += "${datadir}/dnf"
35 dnf \
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/dnf/dnf/
H A D0030-Run-python-scripts-using-env.patch12 bin/dnf-automatic.in | 2 +-
13 bin/dnf.in | 2 +-
16 diff --git a/bin/dnf-automatic.in b/bin/dnf-automatic.in
18 --- a/bin/dnf-automatic.in
19 +++ b/bin/dnf-automatic.in
23 # dnf-automatic executable.
26 diff --git a/bin/dnf.in b/bin/dnf.in
28 --- a/bin/dnf.in
29 +++ b/bin/dnf.in
33 # The dnf executable script.
H A D0001-dnf-write-the-log-lock-to-root.patch4 Subject: [PATCH] dnf: write the log lock to root
14 dnf/logging.py | 2 +-
17 diff --git a/dnf/logging.py b/dnf/logging.py
19 --- a/dnf/logging.py
20 +++ b/dnf/logging.py
25 - self.rotate_lock = dnf.lock.build_log_lock("/var/log/", True)
26 + self.rotate_lock = dnf.lock.build_log_lock("/", True)
H A D0001-set-python-path-for-completion_helper.patch9 dnf/cli/completion_helper.py.in | 2 +-
12 diff --git a/dnf/cli/completion_helper.py.in b/dnf/cli/completion_helper.py.in
14 --- a/dnf/cli/completion_helper.py.in
15 +++ b/dnf/cli/completion_helper.py.in
20 # This file is part of dnf.
H A D0005-Do-not-prepend-installroot-to-logdir.patch13 dnf/cli/cli.py | 2 +-
16 diff --git a/dnf/cli/cli.py b/dnf/cli/cli.py
18 --- a/dnf/cli/cli.py
19 +++ b/dnf/cli/cli.py
H A D0001-Corretly-install-tmpfiles.d-configuration.patch18 -INSTALL (FILES dnf.conf DESTINATION /usr/lib/tmpfiles.d/)
19 +INSTALL (FILES dnf.conf DESTINATION ${SYSCONFDIR}/tmpfiles.d/)
H A D0029-Do-not-set-PYTHON_INSTALL_DIR-by-running-python.patch25 ADD_SUBDIRECTORY (dnf)
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libdnf/libdnf/
H A D0001-libdnf-dnf-context.cpp-do-not-try-to-access-BDB-data.patch4 Subject: [PATCH] libdnf/dnf-context.cpp: do not try to access BDB database
10 libdnf/dnf-context.cpp | 14 --------------
13 diff --git a/libdnf/dnf-context.cpp b/libdnf/dnf-context.cpp
15 --- a/libdnf/dnf-context.cpp
16 +++ b/libdnf/dnf-context.cpp
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Drootfs_rpm.bbclass5 ROOTFS_PKGMANAGE = "rpm dnf"
7 # dnf is using our custom sysconfig module, and so will fail without these
11 # Add 100Meg of extra space for dnf
12 IMAGE_ROOTFS_EXTRA_SPACE:append = "${@bb.utils.contains("PACKAGE_INSTALL", "dnf", " + 102400", "", …
19 dnf-native:do_populate_sysroot \
H A Dtestimage.bbclass64 dnf rpm opkg apt weston go rust"
91 TESTIMAGEDEPENDS += "${@bb.utils.contains('IMAGE_PKGTYPE', 'rpm', 'dnf-native:do_populate_sysroot',…
227 and ('dnf' in d.getVar('TEST_SUITES') or 'auto' in d.getVar('TEST_SUITES'))):
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/
H A Ddnf.py17 def dnf(self, command, expected = 0): member in DnfTest
33 self.dnf('--help')
37 self.dnf('--version')
41 self.dnf('info dnf')
45 self.dnf('search dnf')
49 self.dnf('history')
69 output = self.dnf(" ".join(cmdlinerepoopts) + " --nogpgcheck " + command)
182 self.dnf('list %s' % excludepkg, 0)
/OK3568_Linux_fs/yocto/poky/meta-selftest/lib/oeqa/runtime/cases/
H A Ddnf_runtime.py2 from oeqa.runtime.cases.dnf import DnfTest
43 output_makecache = self.dnf('-vy makecache')
47 output_repoinfo = self.dnf('-v repoinfo')
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libdnf/
H A Dlibdnf_0.66.0.bb3 DESCRIPTION = "This library provides a high level package-manager. It's core library of dnf, Packag…
7 SRC_URI = "git://github.com/rpm-software-management/libdnf;branch=dnf-4-master;protocol=https \
13 file://0001-libdnf-dnf-context.cpp-do-not-try-to-access-BDB-data.patch \
/OK3568_Linux_fs/u-boot/drivers/i2c/
H A Dstm32f7_i2c.c173 u8 dnf; member
243 .dnf = STM32_I2C_DNF_DEFAULT,
507 af_delay_min - (setup->dnf + 3) * i2cclk; in stm32_i2c_compute_solutions()
510 af_delay_max - (setup->dnf + 4) * i2cclk; in stm32_i2c_compute_solutions()
578 dnf_delay = setup->dnf * i2cclk; in stm32_i2c_choose_solution()
660 if (setup->dnf > STM32_I2C_DNF_MAX) { in stm32_i2c_compute_timing()
662 setup->dnf, STM32_I2C_DNF_MAX); in stm32_i2c_compute_timing()
746 setup->analog_filter ? "On" : "Off", setup->dnf); in stm32_i2c_setup_timing()
/OK3568_Linux_fs/yocto/poky/documentation/
H A Dpoky.yaml.in36 \n\ $ sudo dnf config-manager --set-enabled PowerTools
37 \n\ $ sudo dnf makecache
38 \n\ $ sudo dnf install gawk make wget tar bzip2 gzip python3 unzip perl patch \
/OK3568_Linux_fs/buildroot/package/polkit/
H A D0002-Improve-meson_post_install-script.patch20 - dnf upgrade -y --nogpgcheck fedora-release fedora-repos*
21 - dnf update -y && dnf install -y $DEPENDENCIES
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/newlib/
H A Dnewlib_4.2.0.bb19 # No rpm package is actually created but -dev depends on it, avoid dnf error
/OK3568_Linux_fs/kernel/drivers/i2c/busses/
H A Di2c-stm32f7.c235 u8 dnf; member
388 .dnf = STM32F7_I2C_DNF_DEFAULT,
395 .dnf = STM32F7_I2C_DNF_DEFAULT,
465 if (setup->dnf > STM32F7_I2C_DNF_MAX) { in stm32f7_i2c_compute_timing()
468 setup->dnf, STM32F7_I2C_DNF_MAX); in stm32f7_i2c_compute_timing()
479 dnf_delay = setup->dnf * i2cclk; in stm32f7_i2c_compute_timing()
482 af_delay_min - (setup->dnf + 3) * i2cclk; in stm32f7_i2c_compute_timing()
485 af_delay_max - (setup->dnf + 4) * i2cclk; in stm32f7_i2c_compute_timing()
684 (setup->analog_filter ? "On" : "Off"), setup->dnf); in stm32f7_i2c_setup_timing()
735 STM32F7_I2C_CR1_DNF(i2c_dev->setup.dnf)); in stm32f7_i2c_hw_config()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/dnfdragora/
H A Ddnfdragora_2.1.2.bb18 DEPENDS += "dnf python3 "
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3/
H A D0020-configure.ac-setup.py-do-not-add-a-curses-include-pa.patch10 as dnf failures).
/OK3568_Linux_fs/yocto/poky/documentation/ref-manual/
H A Dsystem-requirements.rst160 $ sudo dnf install &FEDORA_HOST_PACKAGES_ESSENTIAL;
165 $ sudo dnf install make python3-pip which
222 $ sudo dnf install &CENTOS8_HOST_PACKAGES_ESSENTIAL;
240 $ sudo dnf install make python3-pip which
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/rpm/files/
H A D0001-When-cross-installing-execute-package-scriptlets-wit.patch14 Since we tell dnf to run rpm with debug output, this will result in rpm not
/OK3568_Linux_fs/buildroot/package/snort/
H A D0007-Fix-error-when-building-on-a-Fedora-host-machine.patch64 - echo " yum install libtirpc-devel or dnf install libtirpc-devel"
/OK3568_Linux_fs/kernel/Documentation/kbuild/
H A Dgcc-plugins.rst67 dnf install gcc-plugin-devel

12