diff mbox series

[meta-ti,master] ltp-ddt: Remove orphaned patch

Message ID 20260429204745.2593539-1-reatmon@ti.com
State New
Headers show
Series [meta-ti,master] ltp-ddt: Remove orphaned patch | expand

Commit Message

Ryan Eatmon April 29, 2026, 8:47 p.m. UTC
When I rebased before moving from meta-arago to meta-ti, I accidentally
removed the wrong patch.  Net result was this orphaned patch was left
and imported incorrectly.  Remove it.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 ...01-include-mk-Fix-installing-subdirs.patch | 49 -------------------
 1 file changed, 49 deletions(-)
 delete mode 100644 meta-ti-test/recipes-devtools/ltp-ddt/ltp-ddt/0001-include-mk-Fix-installing-subdirs.patch

Comments

PRC Automation April 29, 2026, 9:06 p.m. UTC | #1
meta-ti / na / 20260429204745.2593539-1-reatmon

PRC Results: PASS

=========================================================
  check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
All patches passed



=========================================================
  apply-yocto-patch: PASS
=========================================================
master
=====================
Summary:
- Patch Series: [meta-ti][master][PATCH] ltp-ddt: Remove orphaned patch
- Submitter: From: Ryan Eatmon <reatmon@ti.com>
-From: Ryan Eatmon <reatmon@ti.com>
- Date: Date: Wed, 29 Apr 2026 15:47:45 -0500
-Date: Mon, 27 Apr 2026 11:02:32 -0500
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: 7ffd91c9bb4746cf4365c5888ad89627f2d796aa

Applied to:
- Repository: lcpd-prc-meta-ti
- Base Branch: master-wip
- Commit Author: Ryan Eatmon <reatmon@ti.com>
- Commit Subject: conf: Add falcon support natively
- Commit SHA: 82ae4b828b3c5adcf725f73d2a91de05e4da81ec

Patches
----------------------------------------
All patches applied



=========================================================
  check-yocto-repo: PASS
=========================================================
master
=====================
PASS



=========================================================
  yocto-check-layers: PASS
=========================================================
master - PASS
=====================
All checks passed
diff mbox series

Patch

diff --git a/meta-ti-test/recipes-devtools/ltp-ddt/ltp-ddt/0001-include-mk-Fix-installing-subdirs.patch b/meta-ti-test/recipes-devtools/ltp-ddt/ltp-ddt/0001-include-mk-Fix-installing-subdirs.patch
deleted file mode 100644
index 5f970a12..00000000
--- a/meta-ti-test/recipes-devtools/ltp-ddt/ltp-ddt/0001-include-mk-Fix-installing-subdirs.patch
+++ /dev/null
@@ -1,49 +0,0 @@ 
-From 5907227ad86a93b084a52a7ff8dd8cb791c228a5 Mon Sep 17 00:00:00 2001
-From: Ryan Eatmon <reatmon@ti.com>
-Date: Mon, 27 Apr 2026 11:02:32 -0500
-Subject: [PATCH] include/mk: Fix installing subdirs
-
-When installing sub directories, the INSTALL_MODE was being used for the
-dirs as well.  But in runtest/Makefile the INSTALL_MODE is being set to
-00644.  This causes the ddt dir to lose the execute bits and stop acting
-like a directory.
-
-Simple fix is create INSTALL_MODE_DIR and use it when installing
-directories.
-
-Upstream-Status: Pending
-
-Signed-off-by: Ryan Eatmon <reatmon@ti.com>
----
- include/mk/env_post.mk  | 1 +
- include/mk/functions.mk | 2 +-
- 2 files changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/include/mk/env_post.mk b/include/mk/env_post.mk
-index ab31da73a..c2e85439a 100644
---- a/include/mk/env_post.mk
-+++ b/include/mk/env_post.mk
-@@ -58,6 +58,7 @@ INSTALL_TARGETS			:= $(patsubst $(abs_srcdir)/%,%,$(INSTALL_TARGETS))
- # The large majority of the files that we install are going to be apps and
- # scripts, so let's chmod them like that.
- INSTALL_MODE			?= 00775
-+INSTALL_MODE_DIR		?= 00775
- 
- $(abspath $(addprefix $(DESTDIR)/$(INSTALL_DIR)/,$(sort $(dir $(INSTALL_TARGETS) $(MAKE_TARGETS))))):
- 	mkdir -p "$@"
-diff --git a/include/mk/functions.mk b/include/mk/functions.mk
-index 60dbed395..8e4bc973c 100644
---- a/include/mk/functions.mk
-+++ b/include/mk/functions.mk
-@@ -18,7 +18,7 @@ INSTALL_FILES		+= $$(abspath $$(DESTDIR)/$(3)/$(1))
- 
- $$(abspath $$(DESTDIR)/$(3)/$(1)): \
-     $$(abspath $$(dir $$(DESTDIR)/$(3)/$(1)))
--	install -m $$(INSTALL_MODE) $(shell test -d "$(2)/$(1)" && echo "-d") $(PARAM) "$(2)/$(1)" $$@
-+	install $(shell test -d "$(2)/$(1)" || echo "-m $(INSTALL_MODE)") $(shell test -d "$(2)/$(1)" && echo "-m $(INSTALL_MODE_DIR) -d") $(PARAM) "$(2)/$(1)" $$@
- 	$(shell test -d "$(2)/$(1)" && echo "install -m "'$$(INSTALL_MODE) $(PARAM)' "$(2)/$(1)/*" -t '$$@')
- endef
- 
--- 
-2.43.0
-