summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2021-08-19 10:31:51 -0700
committerKhem Raj <raj.khem@gmail.com>2021-08-20 09:26:18 -0700
commit3548503d1323636afe8d3abb74617694a5d25410 (patch)
treed2eb4a71ce4876890acc88683570da6a9ed49af5 /meta-oe
parentc49173b09c998bb3893ae873f68823647f1a7e18 (diff)
downloadmeta-openembedded-3548503d1323636afe8d3abb74617694a5d25410.tar.gz
bootchart: drop; unfetchable
This was replaced by bootchart2 long ago in oe-core. gitorious.org no longer exists, so this is unfetchable. Also, this has seen no development since bootchart2 was created. Signed-off-by: Tim Orling <ticotimo@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb1
-rw-r--r--meta-oe/recipes-devtools/bootchart/bootchart/0001-svg-add-rudimentary-support-for-ARM-cpuinfo.patch49
-rw-r--r--meta-oe/recipes-devtools/bootchart/bootchart/0002-svg-open-etc-os-release-and-use-PRETTY_NAME-for-the-.patch39
-rw-r--r--meta-oe/recipes-devtools/bootchart/bootchart_git.bb21
4 files changed, 0 insertions, 110 deletions
diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb
index 0e58d9b653..c3f4867071 100644
--- a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb
+++ b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb
@@ -227,7 +227,6 @@ RDEPENDS:packagegroup-meta-oe-dbs-python2 ="\
227RDEPENDS:packagegroup-meta-oe-devtools ="\ 227RDEPENDS:packagegroup-meta-oe-devtools ="\
228 abseil-cpp \ 228 abseil-cpp \
229 breakpad \ 229 breakpad \
230 bootchart \
231 android-tools-conf \ 230 android-tools-conf \
232 android-tools \ 231 android-tools \
233 concurrencykit \ 232 concurrencykit \
diff --git a/meta-oe/recipes-devtools/bootchart/bootchart/0001-svg-add-rudimentary-support-for-ARM-cpuinfo.patch b/meta-oe/recipes-devtools/bootchart/bootchart/0001-svg-add-rudimentary-support-for-ARM-cpuinfo.patch
deleted file mode 100644
index 4581ef25fc..0000000000
--- a/meta-oe/recipes-devtools/bootchart/bootchart/0001-svg-add-rudimentary-support-for-ARM-cpuinfo.patch
+++ /dev/null
@@ -1,49 +0,0 @@
1From 8d40b4c286e005e82fa50b66fbbbde22b7e65e15 Mon Sep 17 00:00:00 2001
2From: Koen Kooi <koen@dominion.thruhere.net>
3Date: Sun, 20 May 2012 21:35:34 +0200
4Subject: [PATCH 1/2] svg: add rudimentary support for ARM cpuinfo
5
6On ARM /proc/cpuinfo looks like this:
7
8root@beagleboneA3-0428:~# cat /proc/cpuinfo
9Processor : ARMv7 Processor rev 2 (v7l)
10BogoMIPS : 498.89
11Features : swp half thumb fastmult vfp edsp thumbee neon vfpv3 tls
12CPU implementer : 0x41
13CPU architecture: 7
14CPU variant : 0x3
15CPU part : 0xc08
16CPU revision : 2
17
18Hardware : am335xevm
19Revision : 0000
20Serial : 0000000000000000
21
22So no real way to get the actual SoC name, TI AM3359, but a lot better than 'Unknown'
23
24Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
25---
26
27Upstream-Status: submitted
28
29 svg.c | 4 ++++
30 1 file changed, 4 insertions(+)
31
32diff --git a/svg.c b/svg.c
33index 80e0292..53724b2 100644
34--- a/svg.c
35+++ b/svg.c
36@@ -178,6 +178,10 @@ void svg_title(void)
37 strncpy(cpu, &buf[13], 255);
38 break;
39 }
40+ if (strstr(buf, "Processor")) {
41+ strncpy(cpu, &buf[12], 255);
42+ break;
43+ }
44 }
45 fclose(f);
46 }
47--
481.7.10
49
diff --git a/meta-oe/recipes-devtools/bootchart/bootchart/0002-svg-open-etc-os-release-and-use-PRETTY_NAME-for-the-.patch b/meta-oe/recipes-devtools/bootchart/bootchart/0002-svg-open-etc-os-release-and-use-PRETTY_NAME-for-the-.patch
deleted file mode 100644
index f63d98aee5..0000000000
--- a/meta-oe/recipes-devtools/bootchart/bootchart/0002-svg-open-etc-os-release-and-use-PRETTY_NAME-for-the-.patch
+++ /dev/null
@@ -1,39 +0,0 @@
1From e3adb4c312c6ba3491b7c173559efac7a53e5abc Mon Sep 17 00:00:00 2001
2From: Koen Kooi <koen@dominion.thruhere.net>
3Date: Sun, 20 May 2012 22:12:29 +0200
4Subject: [PATCH 2/2] svg: open /etc/os-release and use PRETTY_NAME for the
5 'Build' name
6
7Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
8---
9
10Upstream-Status: Submitted
11
12 svg.c | 11 +++++++++++
13 1 file changed, 11 insertions(+)
14
15diff --git a/svg.c b/svg.c
16index 53724b2..c675d84 100644
17--- a/svg.c
18+++ b/svg.c
19@@ -194,6 +194,17 @@ void svg_title(void)
20 fclose(f);
21 }
22
23+ f = fopen("/etc/os-release", "r");
24+ if(f) {
25+ while (fgets(buf, 255, f)) {
26+ if (strstr(buf, "PRETTY_NAME=")) {
27+ strncpy(build, &buf[12], 255);
28+ break;
29+ }
30+ }
31+ fclose(f);
32+ }
33+
34 svg("<text class=\"t1\" x=\"0\" y=\"30\">Bootchart for %s - %s</text>\n",
35 uts.nodename, date);
36 svg("<text class=\"t2\" x=\"20\" y=\"50\">System: %s %s %s %s</text>\n",
37--
381.7.10
39
diff --git a/meta-oe/recipes-devtools/bootchart/bootchart_git.bb b/meta-oe/recipes-devtools/bootchart/bootchart_git.bb
deleted file mode 100644
index 2b75eaac9d..0000000000
--- a/meta-oe/recipes-devtools/bootchart/bootchart_git.bb
+++ /dev/null
@@ -1,21 +0,0 @@
1DESCRIPTION = "Monitors where the system spends its time at start, creating a graph of all processes, disk utilization, and wait time."
2HOMEPAGE = "http://meego.gitorious.org/meego-developer-tools/bootchart"
3
4LICENSE = "GPLv2"
5LIC_FILES_CHKSUM = "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067"
6
7PV = "1.17"
8PR = "r1"
9PE = "1"
10
11SRC_URI = "git://gitorious.org/meego-developer-tools/bootchart.git;protocol=https \
12 file://0001-svg-add-rudimentary-support-for-ARM-cpuinfo.patch \
13 file://0002-svg-open-etc-os-release-and-use-PRETTY_NAME-for-the-.patch \
14"
15
16SRCREV = "a2c7561d4060a9f075339bda89e793c76f2ff6dd"
17
18S = "${WORKDIR}/git"
19
20inherit autotools
21