mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 09:46:38 +01:00
This update was made with the convert-scruri.py script in scripts/contrib
This script handles two emerging issues:
1. There is uncertainty about the default branch name in git going forward.
To try and cover the different possible outcomes, add branch names to all
git:// and gitsm:// SRC_URI entries.
2. Github are dropping support for git:// protocol fetching, so remap github
urls as needed. For more details see:
https://github.blog/2021-09-01-improving-git-protocol-security-github/
(From OE-Core rev: 827a805349f9732b2a5fa9184dc7922af36de327)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
46 lines
1.6 KiB
BlitzBasic
46 lines
1.6 KiB
BlitzBasic
SUMMARY = "Boot performance graphing tool"
|
|
DESCRIPTION = "For systemd-bootchart, several proc debug interfaces are required in the kernel config: \
|
|
CONFIG_SCHEDSTATS \
|
|
below is optional, for additional info: \
|
|
CONFIG_SCHED_DEBUG"
|
|
HOMEPAGE = "https://github.com/systemd/systemd-bootchart"
|
|
LICENSE = "LGPLv2.1 & GPLv2"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.LGPL2.1;md5=4fbd65380cdd255951079008b364516c \
|
|
file://LICENSE.GPL2;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
SRC_URI = "git://github.com/systemd/systemd-bootchart.git;protocol=https;branch=master \
|
|
file://0001-architecture-Recognise-RISCV-32-RISCV-64.patch \
|
|
file://mips64.patch \
|
|
"
|
|
|
|
SRC_URI_append_libc-musl = " \
|
|
file://0001-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch \
|
|
file://0002-musl-does-not-provide-printf-h.patch \
|
|
file://0003-musl-does-not-provide-canonicalize_file_name.patch \
|
|
"
|
|
|
|
|
|
# Modify these as desired
|
|
PV = "233+git${SRCPV}"
|
|
SRCREV = "fe1c5e41e6bdb78043dad8fa863fc2df66d1dadf"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "systemd libxslt-native xmlto-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native intltool"
|
|
|
|
inherit pkgconfig autotools systemd features_check
|
|
|
|
REQUIRED_DISTRO_FEATURES = "systemd"
|
|
|
|
SYSTEMD_SERVICE_${PN} = "systemd-bootchart.service"
|
|
|
|
do_configure_prepend() {
|
|
# intltool.m4 is a soft link to /usr/share/aclocal/m4, delete it and use the one in our sysroot
|
|
rm -f ${S}/m4/intltool.m4
|
|
}
|
|
|
|
FILES_${PN} += "${systemd_unitdir}/systemd-bootchart"
|
|
|
|
EXTRA_OECONF = " --with-rootprefix=${root_prefix} \
|
|
--with-rootlibdir=${base_libdir}"
|