mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
840 B
Diff
25 lines
840 B
Diff
From e4d5d5224609d7d5c824dd231f5baec868befdfa Mon Sep 17 00:00:00 2001
|
|
From: Andrea Adami <andrea.adami@gmail.com>
|
|
Date: Tue, 4 Sep 2018 23:56:00 +0200
|
|
Subject: [PATCH 1/1] klibc: add getrandom() syscall
|
|
|
|
needed by latest kexec-tools for qemuarm64 (kashan)
|
|
|
|
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
usr/klibc/SYSCALLS.def | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/usr/klibc/SYSCALLS.def
|
|
+++ b/usr/klibc/SYSCALLS.def
|
|
@@ -275,6 +275,7 @@ int syslog::klogctl(int, char *, int);
|
|
int sysinfo(struct sysinfo *);
|
|
long kexec_load(void *, unsigned long, struct kexec_segment *, unsigned long);
|
|
<x86_64,ppc64,s390x> long kexec_file_load(int, int, unsigned long, const char *, unsigned long);
|
|
+ssize_t getrandom(void *, size_t, unsigned int);
|
|
|
|
/*
|
|
* Low-level I/O (generally architecture-specific);
|