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,11 @@
config BR2_PACKAGE_NMON
bool "nmon"
depends on BR2_TOOLCHAIN_USES_GLIBC # fstab.h
select BR2_PACKAGE_NCURSES
help
Nmon is short for Nigel's performance Monitor for Linux
http://nmon.sourceforge.net/pmwiki.php
comment "nmon needs a glibc toolchain"
depends on !BR2_TOOLCHAIN_USES_GLIBC

View File

@@ -0,0 +1,5 @@
# From https://sourceforge.net/projects/nmon/files/
md5 a72e3eb737c230cd309329330a5545bd lmon16f.c
sha1 b69fdddf86ffe674e0133426fa09935ed678ab7d lmon16f.c
# Locally computed
sha256 280a371e17488f8a2c5e0c64273155789be6fa5b937ab5c465488e591bdc5cd9 lmon16f.c

View File

@@ -0,0 +1,28 @@
################################################################################
#
# nmon
#
################################################################################
NMON_VERSION = 16f
NMON_SITE = http://sourceforge.net/projects/nmon/files
NMON_SOURCE = lmon$(NMON_VERSION).c
NMON_LICENSE = GPLv3+
NMON_LICENSE_FILES = $(NMON_SOURCE)
NMON_DEPENDENCIES = ncurses
NMON_CFLAGS = $(TARGET_CFLAGS) -D JFS -D GETUSER -D LARGEMEM -D DEBIAN
define NMON_EXTRACT_CMDS
cp $(DL_DIR)/$(NMON_SOURCE) $(@D)
endef
define NMON_BUILD_CMDS
$(TARGET_CC) $(NMON_CFLAGS) $(TARGET_LDFLAGS) -o $(@D)/nmon \
$(@D)/$(NMON_SOURCE) -lncurses -lm
endef
define NMON_INSTALL_TARGET_CMDS
$(INSTALL) -m 0755 -D $(@D)/nmon $(TARGET_DIR)/usr/bin/
endef
$(eval $(generic-package))