Update buidlroot to version 2016.08.1
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
From 60a581253331ac38721a12495909d073eff703b7 Mon Sep 17 00:00:00 2001
|
||||
From: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
||||
Date: Sat, 13 Aug 2016 18:47:17 +0200
|
||||
Subject: [PATCH] configure: add option to not build manpages
|
||||
|
||||
Man pages are not always needed, especially on embedded systems.
|
||||
|
||||
Add a configure option to not build them; by default, build them.
|
||||
|
||||
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
||||
---
|
||||
Patch sent upstream:
|
||||
https://github.com/systemd/systemd-bootchart/pull/14
|
||||
---
|
||||
Makefile.am | 5 ++++-
|
||||
configure.ac | 10 +++++++++-
|
||||
2 files changed, 13 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index a71f8d8..e6510d5 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
@@ -74,7 +74,10 @@ EXTRA_DIST = \
|
||||
MANPAGES = man/bootchart.conf.5 man/systemd-bootchart.1
|
||||
MANPAGES_ALIAS = man/bootchart.conf.d.5
|
||||
|
||||
-man_MANS = $(MANPAGES) $(MANPAGES_ALIAS)
|
||||
+if COND_man
|
||||
+MAYBE_MANPAGES = $(MANPAGES) $(MANPAGES_ALIAS)
|
||||
+endif
|
||||
+man_MANS = $(MAYBE_MANPAGES)
|
||||
|
||||
man/bootchart.conf.d.5: man/bootchart.conf.5
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index f8e62d8..90e8b03 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -167,8 +167,16 @@ AC_ARG_WITH([rootlibdir],
|
||||
AC_SUBST([rootprefix], [$with_rootprefix])
|
||||
AC_SUBST([rootlibdir], [$with_rootlibdir])
|
||||
|
||||
+AC_ARG_ENABLE([man],
|
||||
+ AS_HELP_STRING([--diable-man],[Build the man pages (default: yes)]),
|
||||
+ [build_man=$enableval],
|
||||
+ [build_man=yes])
|
||||
+
|
||||
AC_PATH_PROG([XSLTPROC], [xsltproc])
|
||||
-AS_IF([test -z "$XSLTPROC"], AC_MSG_ERROR([*** xsltproc is required for man pages]))
|
||||
+AS_IF([test -z "$XSLTPROC" -a "$build_man" = "yes"],
|
||||
+ [AC_MSG_ERROR([*** xsltproc is required for man pages])])
|
||||
+
|
||||
+AM_CONDITIONAL([COND_man],[test "$build_man" = "yes"])
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
--
|
||||
2.7.4
|
||||
|
||||
26
bsp/buildroot/package/systemd-bootchart/Config.in
Normal file
26
bsp/buildroot/package/systemd-bootchart/Config.in
Normal file
@@ -0,0 +1,26 @@
|
||||
config BR2_PACKAGE_SYSTEMD_BOOTCHART
|
||||
bool "systemd-bootchart"
|
||||
depends on BR2_INIT_SYSTEMD
|
||||
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17
|
||||
help
|
||||
systemd-bootchart is a tool, usually run at system startup,
|
||||
that collects the CPU load, disk load, memory usage, as well
|
||||
as per-process information from a running system. Collected
|
||||
results are output as an SVG graph.
|
||||
|
||||
systemd-bootchart requires a Linux kernel >= 3.0 with the
|
||||
following options enabled:
|
||||
|
||||
- CONFIG_SCHEDSTATS
|
||||
- CONFIG_SCHED_DEBUG
|
||||
|
||||
These options will be automatically enabled by Buildroot if
|
||||
it is responsible for building the kernel. Otherwise, if you
|
||||
are building your kernel outside of Buildroot, make sure
|
||||
these options are enabled.
|
||||
|
||||
http://www.freedesktop.org/software/systemd/man/systemd-bootchart.html
|
||||
|
||||
comment "systemd-bootchart needs a toolchain w/ headers >= 3.17"
|
||||
depends on BR2_INIT_SYSTEMD
|
||||
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17
|
||||
@@ -0,0 +1,2 @@
|
||||
# sha256 locally computed
|
||||
sha256 8cfea4f604c00289394a4429f934e19f80dceafbe0ae1846e00997f70d81a20f systemd-bootchart-230.tar.xz
|
||||
25
bsp/buildroot/package/systemd-bootchart/systemd-bootchart.mk
Normal file
25
bsp/buildroot/package/systemd-bootchart/systemd-bootchart.mk
Normal file
@@ -0,0 +1,25 @@
|
||||
################################################################################
|
||||
#
|
||||
# systemd-bootchart
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SYSTEMD_BOOTCHART_VERSION = 230
|
||||
SYSTEMD_BOOTCHART_SOURCE = systemd-bootchart-$(SYSTEMD_BOOTCHART_VERSION).tar.xz
|
||||
# Do not use the github helper here, the generated tarball is *NOT* the same
|
||||
# as the one uploaded by upstream for the release.
|
||||
SYSTEMD_BOOTCHART_SITE = https://github.com/systemd/systemd-bootchart/releases/download/v$(SYSTEMD_BOOTCHART_VERSION)
|
||||
SYSTEMD_BOOTCHART_LICENSE = LGPLv2.1+
|
||||
SYSTEMD_BOOTCHART_LICENSE_FILES = LICENSE.LGPL2.1
|
||||
SYSTEMD_BOOTCHART_DEPENDENCIES = host-intltool systemd
|
||||
|
||||
# 0001-configure-add-option-to-not-build-manpages.patch
|
||||
SYSTEMD_BOOTCHART_AUTORECONF = YES
|
||||
SYSTEMD_BOOTCHART_CONF_OPTS = --disable-man
|
||||
|
||||
define SYSTEMD_BOOTCHART_INTLTOOLIZE
|
||||
cd $(@D) && $(HOST_DIR)/usr/bin/intltoolize --force --automake
|
||||
endef
|
||||
SYSTEMD_BOOTCHART_PRE_CONFIGURE_HOOKS = SYSTEMD_BOOTCHART_INTLTOOLIZE
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user