mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-03 04:36:06 +00:00
* devtool isn't able to regenerate them completely, it generates only top level commit which says that submodules were changed, like this: From c8fa114325e4e532657499b9bb6fd23cb6536eaa Mon Sep 17 00:00:00 2001 From: OpenEmbedded <oe.patch@oe> Date: Tue, 2 Oct 2018 16:46:55 +0000 Subject: [PATCH] Committing changes from do_patch --- external/libselinux | 2 +- system/core | 2 +- system/extras | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) .. but it still creates relatively good commits in each submodule and after small manual cleanup they can be exported with git format-patch --no-numbered --no-signature * rename .gitignore to prevent git ignoring the changes in .patch files in meta-oe already (we want to use it only later during the build) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
30 lines
808 B
Diff
30 lines
808 B
Diff
From 4421c2e19946dcd651fd8ac022b96627fc526149 Mon Sep 17 00:00:00 2001
|
|
From: Fathi Boudra <fabo@debian.org>
|
|
Date: Wed, 7 Sep 2016 12:58:47 +0300
|
|
Subject: [PATCH] adb: define shell command
|
|
|
|
we intend to run on Linux system so the shell is always /bin/sh,
|
|
for the host or the target.
|
|
|
|
Upstream-Status: Inappropriate
|
|
---
|
|
adb/services.c | 4 ----
|
|
1 file changed, 4 deletions(-)
|
|
|
|
diff --git a/adb/services.c b/adb/services.c
|
|
index 21b08dc201..d44b0c5068 100644
|
|
--- a/adb/services.c
|
|
+++ b/adb/services.c
|
|
@@ -299,11 +299,7 @@ static int create_subproc_raw(const char *cmd, const char *arg0, const char *arg
|
|
}
|
|
#endif /* !ABD_HOST */
|
|
|
|
-#if ADB_HOST
|
|
#define SHELL_COMMAND "/bin/sh"
|
|
-#else
|
|
-#define SHELL_COMMAND "/system/bin/sh"
|
|
-#endif
|
|
|
|
#if !ADB_HOST
|
|
static void subproc_waiter_service(int fd, void *cookie)
|