update buildroot to 2017.02.11

This commit is contained in:
jbnadal
2018-05-22 15:35:47 +02:00
parent 4bf1f5e091
commit a3c10bd762
9257 changed files with 433426 additions and 1701 deletions

View File

@@ -0,0 +1,41 @@
config BR2_PACKAGE_SYSSTAT
bool "sysstat"
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
# Uses fork()
depends on BR2_USE_MMU
help
The sysstat utilities are a collection of performance
monitoring tools for Linux. These include sar, sadf, mpstat,
iostat, pidstat and sa tools.
Some Features :
* Input / Output and transfer rate statistics (global, per
device, per partition, per network filesystem and per
Linux task / PID)
* CPU statistics (global, per CPU and per Linux task /
PID), including support for virtualization architectures
* Memory and swap space utilization statistics
* Virtual memory, paging and fault statistics
* Per-task (per-PID) memory and page fault statistics
* Global CPU and page fault statistics for tasks and all
their children
* Process creation activity
* Interrupt statistics (global, per CPU and per interrupt,
including potential APIC interrupt sources)
* Extensive network statistics: network interface activity
(number of packets and kB received and transmitted per
second, etc.) including failures from network devices;
network traffic statistics for IP, TCP, ICMP and UDP
protocols based on SNMPv2 standards; support for
IPv6-related protocols.
* NFS server and client activity
* Socket statistics
* Run queue and system load statistics
* Kernel internal tables utilization statistics
* System and per Linux task switching activity
* Swapping statistics
* TTY device activity
* Power management statistics
http://pagesperso-orange.fr/sebastien.godard/

View File

@@ -0,0 +1,4 @@
# From: http://sebastien.godard.pagesperso-orange.fr/download.html
sha1 805002b2bef00cd9ab44c5037d09b29cb71a17f8 sysstat-11.4.3.tar.xz
# Locally calculated
sha256 02e9cafa5557fbae435d33e592373655df929d817ae711d31142dd2f7d4dcee7 sysstat-11.4.3.tar.xz

View File

@@ -0,0 +1,24 @@
################################################################################
#
# sysstat
#
################################################################################
SYSSTAT_VERSION = 11.4.3
SYSSTAT_SOURCE = sysstat-$(SYSSTAT_VERSION).tar.xz
SYSSTAT_SITE = http://pagesperso-orange.fr/sebastien.godard
SYSSTAT_CONF_OPTS = --disable-man-group --disable-sensors
SYSSTAT_DEPENDENCIES = host-gettext
SYSSTAT_LICENSE = GPLv2+
SYSSTAT_LICENSE_FILES = COPYING
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
SYSSTAT_DEPENDENCIES += gettext
SYSSTAT_MAKE_OPTS += LFLAGS="$(TARGET_LDFLAGS) -lintl"
endif
# The isag tool is a post processing script that depends on tcl/tk
# among other things. So we don't install it.
SYSSTAT_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) INSTALL_ISAG=n install
$(eval $(autotools-package))