poky/meta/classes
Douglas Royds 73ba6051be reproducible: Find the git repo in WORKDIR/git or S first
Change the search regime for find_git_folder():

1. WORKDIR/git: This is the default git fetcher unpack path
2. ${S}
3. Go looking for .git/ under the WORKDIR as a last resort.

linux-yocto:
We had an existing (silent) defect. The linux-yocto recipes all specify
two git SRC_URIs, one for the kernel source itself, the other for the
kmeta data (config fragments and friends). find_git_folder() was finding
the git checkout for the kmeta data, but due to a typo in the git log -1
--pretty=%ct line, we were (silently) reading the source_date_epoch from
the ${S} directory = STAGING_KERNEL_DIR, which is empty. If your
build/ happened to be inside a git checkout, git would walk up the
directory tree, and silently read the commit timestamp from this other
git checkout. The correct path to read the git commit timestamp from is
the "gitpath", being that found by find_git_folder(), though this
function was incorrectly finding the kmeta data checkout, not the kernel
source tree.

Non-kernel git recipes:
The default git fetcher clones and checks out the sources at
WORKDIR/git/ regardless of the setting of S (unless subpath or
destsuffix is set). find_git_folder() now looks for the
WORKDIR/git/.git/ directory first.

Non-yocto linux kernels:
Kernel recipes that don't inherit kernel-yocto should always set
S = ${WORKDIR}/git, so that when base_do_unpack_append() in
kernel.bbclass moves the checkout down to the STAGING_KERNEL_DIR and
symlinks it as WORKDIR/git, the build can still work by following the
symlink. We were previously failing to follow the symlink in the
os.walk(), but we now look first for WORKDIR/git/.git/, and find it due
to the symlink.

If none of the above mechanisms work for finding the git checkout,
perhaps there was a subpath or destsuffix specified in the SRC_URI.
We go looking for the git checkout under the WORKDIR as a last resort.

(From OE-Core rev: b0ddb141d36853447f85ecaac07dbc9c5779627f)

Signed-off-by: Douglas Royds <douglas.royds@taitradio.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-09-21 18:45:46 -07:00
..
allarch.bbclass allarch: only enable allarch when multilib is not used 2018-09-13 07:42:28 +01:00
archiver.bbclass archiver: Fix archive for linked kernel source 2018-04-05 14:49:07 +01:00
autotools-brokensep.bbclass autotools-brokensep: Mark recipes with broken separate build dir support 2014-02-28 14:01:16 +00:00
autotools.bbclass autotools.bbclass: adjust indentation for consistency 2018-09-05 18:00:24 +01:00
base.bbclass classes: sanity-check LIC_FILES_CHKSUM 2018-08-14 11:36:31 +01:00
bash-completion.bbclass bash-completion: add bash-completion to DEPENDS for target packages 2016-08-25 23:03:45 +01:00
bin_package.bbclass bin_package: fail if ${S} doesn't actually contain anything 2017-12-02 11:25:32 +00:00
binconfig-disabled.bbclass ncurses.inc: add v6 binconfig-disabled entries 2016-12-22 08:50:17 +00:00
binconfig.bbclass binconfig.bbclass: fix typo in get_binconfig_mangle() 2017-04-14 09:47:08 +01:00
blacklist.bbclass classes/recipes: Convert SkipPackage -> SkipRecipe 2018-01-26 13:09:09 +00:00
bluetooth.bbclass bluetooth.bbclass: simplify recipe inference of bluetooth provider 2015-02-17 13:43:38 +00:00
bugzilla.bbclass meta/scripts: Various getVar/getVarFlag expansion parameter fixes 2017-01-09 13:39:11 +00:00
buildhistory.bbclass classes/buildhistory: properly process escaped chars from pkgdata 2018-07-18 10:18:41 +01:00
buildstats-summary.bbclass meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
buildstats.bbclass buildstats.bbclass: Avoid index exception in /proc/PID/io parsing 2017-03-01 23:27:10 +00:00
ccache.bbclass ccache: let ccache create CCACHE_DIR, reducing hash changes 2017-07-17 14:01:36 +01:00
chrpath.bbclass meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
clutter.bbclass recipes: Update git.gnome.org addresses after upstream changes 2018-09-04 11:03:56 +01:00
cmake.bbclass bitbake.conf: handle cmake -dev files packaging with default rules 2018-06-28 12:26:54 +01:00
cml1.bbclass cml1: remove diffconfig return code checking 2017-10-07 23:20:39 +01:00
compress_doc.bbclass compress_doc.bbclass: Clean up getstatusoutput usage 2018-08-23 18:02:23 +01:00
copyleft_compliance.bbclass meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
copyleft_filter.bbclass copyleft_filter.bbclass: restore possiblity to filter on type 2017-06-28 20:55:08 +01:00
core-image.bbclass core-image.bbclass: update available IMAGE_FEATURES 2017-03-24 23:43:32 +00:00
cpan_build.bbclass cpan_build.bbclass: tell Module::Build the replacement 2018-06-15 17:56:24 +01:00
cpan-base.bbclass cpan-base.bbclass: Move PERLVERSION and get_perl_version to a new file 2017-06-12 15:08:31 +01:00
cpan.bbclass cpan.bbclass: make RPATH fix more general 2018-08-28 10:30:28 +01:00
cross-canadian.bbclass tclibc-newlib: Adds a new TCLIBC variant to build with newlib as C library 2018-06-15 17:56:24 +01:00
cross.bbclass bitbake.conf: drop _build-${BUILD_OS} over-ride 2018-05-22 13:13:33 +01:00
crosssdk.bbclass crosssdk.bbclass: override TARGET_* flags 2017-04-10 23:00:44 +01:00
cve-check.bbclass cve-check.bbclass: do not download the CVE DB in package-specific tasks 2018-08-15 21:45:58 +01:00
debian.bbclass classes/debian: clean up process spawning 2018-01-18 12:50:36 +00:00
deploy.bbclass classes: Use ${MACHINE_ARCH} instead of ${MACHINE} for stamp-extra-info task flag 2018-04-10 09:10:36 +01:00
devicetree.bbclass devicetree.bbclass: don't pad DT overlays 2018-09-13 07:42:28 +01:00
devshell.bbclass devshell.bbclass: clean up trailing whitespaces 2017-06-06 19:02:43 +01:00
devtool-source.bbclass devtool-source.bbclass: Support kernel-fragments/patch not in SRC_URI 2018-08-14 11:36:31 +01:00
devupstream.bbclass devupstream.bbclass: minor typo fix 2017-04-19 10:18:43 +01:00
distro_features_check.bbclass classes/recipes: Convert SkipPackage -> SkipRecipe 2018-01-26 13:09:09 +00:00
distrodata.bbclass distrodata: remove redudant *all tasks now that --runall works correctly 2018-02-16 18:05:40 +00:00
distrooverrides.bbclass distrooverrides.bbclass: fix default configuration 2017-07-17 14:01:36 +01:00
distutils-base.bbclass Revert "distutils-base.bbclass: Do not use -pie with hardening" 2017-06-09 17:12:14 +01:00
distutils-common-base.bbclass distutils-common-base.bbclass: Define commonly used compiler variables 2018-09-04 11:03:55 +01:00
distutils-tools.bbclass classes: Replace "if test" file tests with POSIX file tests 2017-03-27 11:08:34 +01:00
distutils.bbclass distutils/distutils3: do not try to fetch code during do_configure 2018-07-30 12:44:35 +01:00
distutils3-base.bbclass meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
distutils3.bbclass distutils/distutils3: do not try to fetch code during do_configure 2018-07-30 12:44:35 +01:00
dos2unix.bbclass dos2unix.bbclass: Move to oe-core 2018-08-20 17:38:22 +01:00
externalsrc.bbclass externalsrc.bbclass: don't configure with --disable-dependency-tracking 2018-05-29 21:07:13 +01:00
extrausers.bbclass extrausers: Use static ids when available 2017-01-19 22:47:20 +00:00
fontcache.bbclass qemuwrapper-cross: enable multilib and nativesdk variants of the script 2018-06-18 11:07:58 +01:00
fs-uuid.bbclass gummiboot: Remove/change gummiboot references with systemd-boot 2017-01-09 13:39:11 +00:00
gconf.bbclass gconf.bbclass: Add PACKAGE_WRITE_DEPS for postinst 2017-01-20 11:53:51 +00:00
gettext.bbclass cross-canadian/gettext: Drop unneeded nativesdk-gettext dependency 2018-01-14 09:11:58 +00:00
gio-module-cache.bbclass gio-module-cache.bbclass: pass in ${libexecdir} 2018-04-05 14:49:07 +01:00
glide.bbclass glide.bbclass: Add class to easy Glide use 2018-03-25 09:40:42 +01:00
gnome.bbclass gnome: move introspection options to gnomebase 2015-08-24 23:46:53 +01:00
gnomebase.bbclass gnomebase.bbclass: allow a meson-specific version 2018-01-05 12:02:36 +00:00
go.bbclass go.bbclass, goarch.bbclass: update SECURITY_CFLAGS 2018-03-06 06:43:10 -08:00
goarch.bbclass recipes: Enforce ARM ISA just for arm arches <= armv5 2018-07-18 10:18:42 +01:00
gobject-introspection-data.bbclass classes/gobject-introspecton-data: lazy assign GI_DATA_ENABLED 2016-09-14 22:22:08 +01:00
gobject-introspection.bbclass Switch to Recipe Specific Sysroots 2017-01-23 12:05:17 +00:00
godep.bbclass godep.bbclass: Add helper class to enable go-dep tool 2018-03-06 06:43:10 -08:00
grub-efi-cfg.bbclass default-distrovars: set default KERNEL_IMAGETYPE(S) 2018-03-31 09:48:42 +01:00
grub-efi.bbclass grub-efi*.bbclass: don't reference vmlinuz 2018-03-06 06:35:42 -08:00
gsettings.bbclass gsettings: Add PACKAGE_WRITE_DEPS for postinst 2017-01-20 11:53:51 +00:00
gtk-doc.bbclass gtk-doc: use --srcdir instead of cd 2018-03-15 06:27:19 -07:00
gtk-icon-cache.bbclass gtk-icon-cache: Add PACKAGE_WRITE_DEPS for postinst 2017-01-20 11:53:49 +00:00
gtk-immodules-cache.bbclass gtk-immodules-cache.bbclass: convert cache creation to postinst_intercept mechanism 2018-06-18 11:07:58 +01:00
icecc.bbclass allarch: only enable allarch when multilib is not used 2018-09-13 07:42:28 +01:00
image_types_wic.bbclass image_types_wic: add do_image_wic before do_image_complete 2018-05-04 13:28:05 +01:00
image_types.bbclass image_types: use pigz to create .gz files 2018-04-13 16:58:06 +01:00
image-buildinfo.bbclass image-buildinfo.bbclass: configurable location for build file 2017-03-22 11:35:21 +00:00
image-combined-dbg.bbclass image: add image-combined-dbg helper class 2018-04-07 11:44:50 +01:00
image-container.bbclass image-container.bbclass: Error if not using linux-dummy 2017-02-19 06:49:00 -08:00
image-live.bbclass image-live: fix check for rootfs size with hddimg images 2018-07-15 16:16:16 +01:00
image-mklibs.bbclass linuxloader: Convert to python function 2018-08-23 17:58:59 +01:00
image-postinst-intercepts.bbclass image-postinst-intercepts.bbclass: add class 2018-08-16 09:49:39 +01:00
image-prelink.bbclass linuxloader: Convert to python function 2018-08-23 17:58:59 +01:00
image.bbclass image.bbclass: inherit and use image-postinst-intercepts 2018-08-16 09:49:39 +01:00
insane.bbclass insane: Recognise BPF as a valid EM_MACHINE type 2018-09-13 17:38:07 +01:00
kernel-arch.bbclass siteinfo: add aarch64_illp32 decode 2018-02-24 10:31:46 +00:00
kernel-artifact-names.bbclass kernel-artifact-names.bbclass: Add 2 more variables to make it easier to change all names with one variable 2018-08-21 14:49:42 +01:00
kernel-devicetree.bbclass kernel*.bbclass: rename *_SYMLINK_NAME variables to *_LINK_NAME and *_BASE_NAME to *_NAME 2018-08-21 14:49:42 +01:00
kernel-fitimage.bbclass kernel*.bbclass: rename *_SYMLINK_NAME variables to *_LINK_NAME and *_BASE_NAME to *_NAME 2018-08-21 14:49:42 +01:00
kernel-grub.bbclass meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
kernel-module-split.bbclass kernel: drop unnecessary True options from calls to getVar 2018-01-19 12:37:13 +00:00
kernel-uboot.bbclass kernel-uboot: support Image kernel type for arm64 2018-01-23 23:43:45 +00:00
kernel-uimage.bbclass kernel-uimage: optimise UBOOT_ENTRYSYMBOL support 2017-09-25 14:14:17 +01:00
kernel-yocto.bbclass kernel-yocto: restore BSP audit visibility 2018-08-28 10:30:28 +01:00
kernel.bbclass kernel.bbclass: do not deploy fitImage; kernel-fitimage.bbclass does that. 2018-09-13 07:42:28 +01:00
kernelsrc.bbclass image/kernelsrc/packagegroups/recipes: Remove uneeded noexec tasks 2017-01-28 23:32:16 +00:00
lib_package.bbclass lib_package.bbclass: Correct comment referring to bin directories. 2013-01-07 11:09:42 +00:00
libc-common.bbclass glibc: Drop obsolete rpc and libnsl 2018-05-09 10:47:50 +01:00
libc-package.bbclass libc-package: Add risc-v specific options to cross-localedef invocation 2018-09-04 11:03:55 +01:00
license_image.bbclass license_image: Fix race 2018-07-25 16:48:27 +01:00
license.bbclass classes: sanity-check LIC_FILES_CHKSUM 2018-08-14 11:36:31 +01:00
linux-kernel-base.bbclass kernel: Rearrange for 1.8 2014-12-21 12:37:53 +00:00
linuxloader.bbclass linuxloader.bbclass: Refactor to have seprate functions for musl/glibc loader 2018-09-21 18:45:46 -07:00
live-vm-common.bbclass default-distrovars: set default KERNEL_IMAGETYPE(S) 2018-03-31 09:48:42 +01:00
logging.bbclass logging.bbclass: Enclose the tr string in quotes 2018-02-24 10:31:48 +00:00
manpages.bbclass manpages.bbclass: Update RDEPENDS and post install scripts 2018-06-15 17:56:24 +01:00
meson.bbclass meson: don't dump full error log on failure 2018-08-02 09:30:11 +01:00
meta.bbclass meta: fix no newline at end of file 2014-07-03 17:41:16 +01:00
metadata_scm.bbclass meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
migrate_localcount.bbclass meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
mime.bbclass mime.bbclass: Add PACKAGE_WRITE_DEPS for postinst 2017-01-20 11:53:51 +00:00
mirrors.bbclass recipes: Update git.gnome.org addresses after upstream changes 2018-09-04 11:03:56 +01:00
module-base.bbclass make-mod-scripts: change how some kernel module tools are built 2018-02-24 10:31:44 +00:00
module.bbclass make-mod-scripts: change how some kernel module tools are built 2018-02-24 10:31:44 +00:00
multilib_global.bbclass allarch: only enable allarch when multilib is not used 2018-09-13 07:42:28 +01:00
multilib_header.bbclass multilib_header: Update wrapper to handle arm 32/64 bit 2017-03-31 10:10:29 +01:00
multilib_script.bbclass multilib-script: Fix ALTERNATIVE_${PN} overwrite issue 2018-08-14 11:36:31 +01:00
multilib.bbclass target-sdk-provides-dummy: skip package_qa_multilib check 2018-09-13 07:42:28 +01:00
native.bbclass bitbake.conf: drop _build-${BUILD_OS} over-ride 2018-05-22 13:13:33 +01:00
nativesdk.bbclass native.bbclass: drop _virtclass-native and _virtclass-nativesdk overrides 2018-05-15 10:56:50 +01:00
nopackages.bbclass nopackages.bbclass: deltask foo_setscene 2016-05-30 15:58:11 +01:00
npm.bbclass npm.bbclass: Node module name and recipe name can be different 2018-02-06 11:06:27 +00:00
oelint.bbclass meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
own-mirrors.bbclass own-mirrors.bbclass: allow other settings of PREMIRRORS have effect 2017-10-16 23:52:44 +01:00
package_deb.bbclass package_ipk|deb: Use oe.utils.multiprocess_launch 2018-07-24 11:52:27 +01:00
package_ipk.bbclass package_ipk|deb: Use oe.utils.multiprocess_launch 2018-07-24 11:52:27 +01:00
package_rpm.bbclass package_rpm: set _builddir to B not S 2018-03-30 00:31:18 +01:00
package_tar.bbclass classes: Drop now unneeded update_data calls 2017-02-15 09:29:55 -08:00
package.bbclass allarch: only enable allarch when multilib is not used 2018-09-13 07:42:28 +01:00
packagedata.bbclass meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
packagefeed-stability.bbclass packagefeed-stability.bbclass: change another bb.plain to bb.note 2017-08-18 10:40:27 +01:00
packagegroup.bbclass classes: don't scan for CVEs in images or packagegroups 2018-02-16 18:05:40 +00:00
patch.bbclass patch: Jail patch_task_patch_prefunc in classes/patch into the workdir 2018-07-06 22:55:02 +01:00
perl-version.bbclass cpan-base.bbclass: Move PERLVERSION and get_perl_version to a new file 2017-06-12 15:08:31 +01:00
perlnative.bbclass base/perlnative/pythonnative/gzipnative: Add a new variable to enable easier handling of native path issues 2012-07-26 14:56:20 +01:00
pixbufcache.bbclass qemuwrapper-cross: enable multilib and nativesdk variants of the script 2018-06-18 11:07:58 +01:00
pkgconfig.bbclass pkgconfig: Drop automatic pkgconfig RDEPENDS 2012-10-18 12:13:12 +01:00
populate_sdk_base.bbclass target-sdk-provides-dummy: skip package_qa_multilib check 2018-09-13 07:42:28 +01:00
populate_sdk_ext.bbclass Only add uninative and checksum if inherited uninative class 2018-06-18 11:07:57 +01:00
populate_sdk.bbclass nativesdk: Switch to using nativesdk as a prefix, not a suffix 2012-09-02 05:52:06 -07:00
prexport.bbclass meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
primport.bbclass classes/conf: Add eventmasks for event handlers 2013-06-14 12:55:47 +01:00
ptest-gnome.bbclass ptest-gnome: extend EXTRA_OECONF in all builds, not just target 2015-11-24 15:50:25 +00:00
ptest-perl.bbclass meta/classes: add ptest-perl.bbclass 2018-03-06 06:19:18 -08:00
ptest.bbclass ptest.bbclass: use BPN in PTEST_PATH for multilib 2017-03-04 23:18:19 +00:00
pypi.bbclass pypi.bbclass: bring in from meta-python 2017-12-13 14:00:51 +00:00
python-dir.bbclass python3-dir.bbclass: add a separate class for Python 3 2016-06-01 12:38:41 +01:00
python3-dir.bbclass python3-dir.bbclass: add a separate class for Python 3 2016-06-01 12:38:41 +01:00
python3native.bbclass python[3]native: allow use of both native Python 2 and 3 2018-08-02 09:30:11 +01:00
pythonnative.bbclass python[3]native: allow use of both native Python 2 and 3 2018-08-02 09:30:11 +01:00
qemu.bbclass meta/scripts: Various getVar/getVarFlag expansion parameter fixes 2017-01-09 13:39:11 +00:00
qemuboot.bbclass qemuboot: Improve relative path handling 2017-11-21 13:11:03 +00:00
recipe_sanity.bbclass recipe_sanity: Drop now unused FILESDIR 2017-04-05 23:22:11 +01:00
relative_symlinks.bbclass openssl/fontconfig/bzip2: Use relative symlinks instead of absolute ones (using a new class) 2017-02-09 10:52:03 +00:00
relocatable.bbclass relocatable: Make native .pc files relocatable 2017-01-31 23:47:33 +00:00
remove-libtool.bbclass remove-libtool: add new class 2016-02-02 14:44:16 +00:00
report-error.bbclass report-error: provide distro identifier string in case of uninative build 2017-08-18 23:46:37 +01:00
reproducible_build_simple.bbclass bitbake.conf: Set and export TZ envvar to UTC 2018-04-18 18:57:06 +01:00
reproducible_build.bbclass reproducible: Find the git repo in WORKDIR/git or S first 2018-09-21 18:45:46 -07:00
rm_work_and_downloads.bbclass rm_work_and_downloads.bbclass: more aggressively minimize disk usage 2017-01-20 11:53:48 +00:00
rm_work.bbclass rm_work: Simplify looping code 2018-06-21 09:34:40 +01:00
rootfs_deb.bbclass lib/oe/package_manager/sdk: Ensure do_populate_sdk_ext and do_populate_sdk repos don't conflict 2018-01-22 10:39:10 +00:00
rootfs_ipk.bbclass lib/oe/package_manager/sdk: Ensure do_populate_sdk_ext and do_populate_sdk repos don't conflict 2018-01-22 10:39:10 +00:00
rootfs_rpm.bbclass dnf: move the entire dnf/rpm4 stack to Python 3 2017-03-28 08:43:13 +01:00
rootfs-postcommands.bbclass rootfs-postcommands: put image testdata under sstate control 2018-08-21 14:49:42 +01:00
rootfsdebugfiles.bbclass rootfsdebugfiles.bbclass: add a optional parameter to choose file mode 2017-07-30 08:46:19 +01:00
sanity.bbclass classes/sanity: Clean up getstatusoutput usage 2018-08-08 10:52:00 +01:00
scons.bbclass scons.bbclass: rework parameters for install task 2016-09-24 07:30:10 +01:00
setuptools.bbclass distutils/setuptools, distutils3/setuptools3: improve reproducibility 2018-07-26 13:16:40 +01:00
setuptools3.bbclass distutils/setuptools, distutils3/setuptools3: improve reproducibility 2018-07-26 13:16:40 +01:00
sign_ipk.bbclass meta: remove True option to getVar calls 2016-12-16 10:23:23 +00:00
sign_package_feed.bbclass gnupg: use native version for signing, rather than one provided by host 2018-01-11 10:26:07 +00:00
sign_rpm.bbclass gnupg: use native version for signing, rather than one provided by host 2018-01-11 10:26:07 +00:00
siteconfig.bbclass Switch to Recipe Specific Sysroots 2017-01-23 12:05:17 +00:00
siteinfo.bbclass siteinfo: add support for ARM64 ILP32 2018-01-03 09:26:37 +00:00
spdx.bbclass spdx.bbclass: Encode strings before passing to hashlib 2018-07-18 10:18:42 +01:00
sstate.bbclass sstate.bbclass: update SSTATE_DUPWHITELIST 2018-09-13 07:42:28 +01:00
staging.bbclass staging: Fix broken debug code 2018-09-10 12:13:06 +01:00
syslinux.bbclass default-distrovars: set default KERNEL_IMAGETYPE(S) 2018-03-31 09:48:42 +01:00
systemd-boot-cfg.bbclass default-distrovars: set default KERNEL_IMAGETYPE(S) 2018-03-31 09:48:42 +01:00
systemd-boot.bbclass systemd-boot*.bbclass: Don't use vmlinuz 2018-03-06 06:35:42 -08:00
systemd.bbclass systemd: escape paths passed to shell 2018-06-27 13:55:22 +01:00
terminal.bbclass terminal.bbclass: use var-SHELL as the shebang of wrapper script 2018-08-28 10:30:28 +01:00
testexport.bbclass classes/test{export,images}: Change modules to list 2017-06-02 13:36:14 +01:00
testimage.bbclass testimage.bbclass: fix qemu_use_kvm handling 2018-09-13 07:42:27 +01:00
testsdk.bbclass testsdk.bbclass: check python module testtools and subunit 2018-07-30 12:44:35 +01:00
texinfo.bbclass texinfo.bbclass: use dummy dep for libtool-cross 2016-11-06 23:35:35 +00:00
tinderclient.bbclass meta/scripts: Various getVar/getVarFlag expansion parameter fixes 2017-01-09 13:39:11 +00:00
toaster.bbclass toaster.bbclass: Ignore some dependencies in toaster_buildhistory_dump() 2017-06-12 23:01:22 +01:00
toolchain-scripts-base.bbclass toolchain-scripts-base: add base class for toolchain_create_sdk_version 2016-09-23 14:56:39 +01:00
toolchain-scripts.bbclass toolchain-scripts: put TARGET_ARCH and TARGET_OS into environment 2018-08-07 12:13:03 +01:00
typecheck.bbclass meta: remove True option to getVarFlag calls 2016-12-16 10:23:23 +00:00
uboot-config.bbclass classes/recipes: Convert SkipPackage -> SkipRecipe 2018-01-26 13:09:09 +00:00
uboot-extlinux-config.bbclass uboot-extlinux-config.bbclass: Add baudrate in console bootparam 2018-06-15 17:56:24 +01:00
uboot-sign.bbclass classes: Fix "U-boot", use proper spelling of "U-Boot". 2017-03-17 16:53:05 +00:00
uninative.bbclass uninative: Add support for aarch64 hosts 2018-09-20 09:06:00 -07:00
update-alternatives.bbclass update-alternatives.bbclass: refuse to manage SysV init scripts 2017-12-02 11:25:33 +00:00
update-rc.d.bbclass update-rc.d: QA regression. 2018-02-24 10:31:46 +00:00
upstream-version-is-even.bbclass upstream-version-is-even.bbclass: exclude various alphas, betas, pre-releases etc. 2016-12-17 09:57:04 +00:00
useradd_base.bbclass useradd_base: keep group if it still has users 2017-01-26 10:44:27 +00:00
useradd-staticids.bbclass classes/recipes: Convert SkipPackage -> SkipRecipe 2018-01-26 13:09:09 +00:00
useradd.bbclass useradd.bbclass: print a warn when useradd not found 2017-11-07 13:30:22 +00:00
utility-tasks.bbclass utility-tasks: Drop fetchall and checkuriall tasks 2018-02-15 11:23:10 +00:00
utils.bbclass utils.bbclass: fix KeyError exception 2018-08-24 07:53:14 +01:00
vala.bbclass vala.bbclass: remove pre-packaged vapigen.m4 from tarballs 2016-03-12 22:11:44 +00:00
waf.bbclass waf.bbclass: Throw error if waf doesn't exist 2018-03-25 09:40:42 +01:00