From cf781e2f9b406075d97d363443eba4a74171a8c0 Mon Sep 17 00:00:00 2001 From: Leonardo Sandoval Date: Mon, 12 Jun 2017 14:40:08 -0700 Subject: scripts/lib/bsp/kernel.py: force patching when branch is machine branch is re-use When a branch is re-used, the kernel tools turns off any patch pushing unless 'mark patching' is explicitly set. [YOCTO #10674] (From meta-yocto rev: 4f3cd59d76e3d8a43a4460528082c0086bdbba41) Signed-off-by: Leonardo Sandoval Signed-off-by: Richard Purdie --- scripts/lib/bsp/kernel.py | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/lib/bsp/kernel.py b/scripts/lib/bsp/kernel.py index a3ee325a8f..32cab3b642 100644 --- a/scripts/lib/bsp/kernel.py +++ b/scripts/lib/bsp/kernel.py @@ -331,6 +331,7 @@ def write_patch_items(scripts_path, machine, patch_items): patch list [${machine}-user-patches.scc]. """ f = open_user_file(scripts_path, machine, machine+"-user-patches.scc", "w") + f.write("mark patching start\n") for item in patch_items: f.write("patch " + item + "\n") f.close() -- cgit v1.2.3-54-g00ecf