Bump buildroot to 2020.11-rc1 (#985)
* Update buildroot-patches for 2020.11-rc1 buildroot * Update buildroot to 2020.11-rc1 Signed-off-by: Stefan Agner <stefan@agner.ch> * Don't rely on sfdisk --list-free output The --list-free (-F) argument does not allow machine readable mode. And it seems that the output format changes over time (different spacing, using size postfixes instead of raw blocks). Use sfdisk json output and calculate free partition space ourselfs. This works for 2.35 and 2.36 and is more robust since we rely on output which is meant for scripts to parse. * Migrate defconfigs for Buildroot 2020.11-rc1 In particular, rename BR2_TARGET_UBOOT_BOOT_SCRIPT(_SOURCE) to BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT(_SOURCE). * Rebase/remove systemd patches for systemd 246 * Drop apparmor/libapparmor from buildroot-external * hassos-persists: use /run as directory for lockfiles The U-Boot tools use /var/lock by default which is not created any more by systemd by default (it is under tmpfiles legacy.conf, which we no longer install). * Disable systemd-update-done.service The service is not suited for pure read-only systems. In particular the service needs to be able to write a file in /etc and /var. Remove the service. Note: This is a static service and cannot be removed using systemd-preset. * Disable apparmor.service for now The service loads all default profiles. Some might actually cause problems. E.g. the profile for ping seems not to match our setup for /etc/resolv.conf: [85503.634653] audit: type=1400 audit(1605286002.684:236): apparmor="DENIED" operation="open" profile="ping" name="/run/resolv.conf" pid=27585 comm="ping" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
This commit is contained in:
@@ -1,43 +0,0 @@
|
||||
From 604f6d0ce2ec42ac494d76c95e68850ea6e7da8f Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Kemper <sebastian_ml@gmx.net>
|
||||
Date: Sun, 4 Nov 2018 16:58:00 +0100
|
||||
Subject: [PATCH] capture: fix typo in FILE object
|
||||
|
||||
FILE *fstdin is defined, but when calling freopen() stdin is used instead
|
||||
of fstdin.
|
||||
|
||||
This causes the compile to fail:
|
||||
|
||||
CC sngrep-capture.o
|
||||
capture.c: In function 'capture_offline':
|
||||
capture.c:194:21: error: assignment of read-only variable 'stdin'
|
||||
if (!(stdin = freopen("/dev/tty", "r", stdin))) {
|
||||
^
|
||||
make[5]: *** [Makefile:519: sngrep-capture.o] Error 1
|
||||
|
||||
This commit fixes the typo.
|
||||
|
||||
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Upstream status: commit 604f6d0ce2ec
|
||||
|
||||
src/capture.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/capture.c b/src/capture.c
|
||||
index 911c35f43a35..a799413e2b0e 100644
|
||||
--- a/src/capture.c
|
||||
+++ b/src/capture.c
|
||||
@@ -191,7 +191,7 @@ capture_offline(const char *infile, const char *outfile)
|
||||
|
||||
// Reopen tty for ncurses after pcap have used stdin
|
||||
if (!strncmp(infile, "/dev/stdin", 10)) {
|
||||
- if (!(stdin = freopen("/dev/tty", "r", stdin))) {
|
||||
+ if (!(fstdin = freopen("/dev/tty", "r", stdin))) {
|
||||
fprintf(stderr, "Failed to reopen tty while using stdin for capture.");
|
||||
return 1;
|
||||
}
|
||||
--
|
||||
2.19.2
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# From https://github.com/irontec/sngrep/releases/download/v1.4.6/sngrep-1.4.6.tar.gz.md5sum
|
||||
md5 094e76786b118258bac69e1514aac826 sngrep-1.4.6.tar.gz
|
||||
# From https://github.com/irontec/sngrep/releases/download/v1.4.7/sngrep-1.4.7.tar.gz.md5sum
|
||||
md5 78fe753e24f36ddaf627bc2b734f45ba sngrep-1.4.7.tar.gz
|
||||
|
||||
# Locally computed
|
||||
sha256 638d6557dc68db401b07d73b2e7f8276800281f021fe0c942992566d6b59a48a sngrep-1.4.6.tar.gz
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE
|
||||
sha256 3c96aadd8b8c6b7adb5552d6fb4234f2000f15109b0f6c5feb632c81306cc49b sngrep-1.4.7.tar.gz
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 LICENSE
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SNGREP_VERSION = 1.4.6
|
||||
SNGREP_VERSION = 1.4.7
|
||||
SNGREP_SITE = $(call github,irontec,sngrep,v$(SNGREP_VERSION))
|
||||
SNGREP_LICENSE = GPL-3.0+
|
||||
SNGREP_LICENSE_FILES = LICENSE
|
||||
|
||||
Reference in New Issue
Block a user