From 3be73dcd7ac9342ad104e6af6c434f6563862053 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Mon, 15 Aug 2016 14:27:00 -0400 Subject: yocto-bsp/yocto-kernel: update to work with the latest kern-tools With some recent changes in the kern tools, we can drop some changes in the yocto-bsp and yocto-kernel tools that ensured proper patching and BSP inheritance. In particular, we no longer need to signify the start of patching, and we must instruct the tools that we only want configuration fragments via inheritance .. no patches (since they are already applied). (From meta-yocto rev: 34ed5eebd0b5baab98b6b2d7b3f06ca40932b37d) Signed-off-by: Bruce Ashfield Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- scripts/lib/bsp/kernel.py | 1 - 1 file changed, 1 deletion(-) (limited to 'scripts/lib/bsp/kernel.py') diff --git a/scripts/lib/bsp/kernel.py b/scripts/lib/bsp/kernel.py index 32cab3b642..a3ee325a8f 100644 --- a/scripts/lib/bsp/kernel.py +++ b/scripts/lib/bsp/kernel.py @@ -331,7 +331,6 @@ 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