We have added checking for unused patches in our repo checking tool. Remove two patch files that it found.
Signed-off-by: Ryan Eatmon <[email protected]> --- ...sh-improve-reproducibility-for-v6.10.patch | 60 ------------------- ...Open-TRNG-firewall-for-TIFS-on-all-k.patch | 45 -------------- 2 files changed, 105 deletions(-) delete mode 100644 meta-ti-bsp/recipes-kernel/linux/files/0001-vt-conmakehash-improve-reproducibility-for-v6.10.patch delete mode 100644 meta-ti-bsp/recipes-security/optee/optee-os/0001-plat-k3-drivers-Open-TRNG-firewall-for-TIFS-on-all-k.patch diff --git a/meta-ti-bsp/recipes-kernel/linux/files/0001-vt-conmakehash-improve-reproducibility-for-v6.10.patch b/meta-ti-bsp/recipes-kernel/linux/files/0001-vt-conmakehash-improve-reproducibility-for-v6.10.patch deleted file mode 100644 index f9fdece8..00000000 --- a/meta-ti-bsp/recipes-kernel/linux/files/0001-vt-conmakehash-improve-reproducibility-for-v6.10.patch +++ /dev/null @@ -1,60 +0,0 @@ -From 4907fa9ff1dbdd72ce9fa7855091fb604a35a62d Mon Sep 17 00:00:00 2001 -From: Ryan Eatmon <[email protected]> -Date: Wed, 17 Jul 2024 14:55:10 -0500 -Subject: [PATCH] vt/conmakehash: improve reproducibility for v6.10 - -The file generated by conmakehash capture the application -path used to generate the file. While that can be informative, -it varies based on where the kernel was built, as the full -path is captured. - -We tweak the application to use a second input as the "capture -name", and then modify the Makefile to pass the basename of -the source, making it reproducible. - -This could be improved by using some sort of path mapping, -or the application manipualing argv[1] itself, but for now -this solves the reprodicibility issue. - -Signed-off-by: Bruce Ashfield <[email protected]> - -Upstream-Status: Inappropriate - -Signed-off-by: Denys Dmytriyenko <[email protected]> - -This is a minior rework of Bruce's original patch for the v6.10 kernel. - -Signed-off-by: Ryan Eatmon <[email protected]> ---- - drivers/tty/vt/Makefile | 2 +- - drivers/tty/vt/conmakehash.c | 2 ++ - 2 files changed, 3 insertions(+), 1 deletion(-) - -diff --git a/drivers/tty/vt/Makefile b/drivers/tty/vt/Makefile -index 2c8ce8b592ed..8532077ed3bb 100644 ---- a/drivers/tty/vt/Makefile -+++ b/drivers/tty/vt/Makefile -@@ -15,7 +15,7 @@ clean-files := consolemap_deftbl.c defkeymap.c - hostprogs += conmakehash - - quiet_cmd_conmk = CONMK $@ -- cmd_conmk = $(obj)/conmakehash $< > $@ -+ cmd_conmk = $(obj)/conmakehash $< $(shell basename $<) > $@ - - $(obj)/consolemap_deftbl.c: $(src)/$(FONTMAPFILE) $(obj)/conmakehash - $(call cmd,conmk) -diff --git a/drivers/tty/vt/conmakehash.c b/drivers/tty/vt/conmakehash.c -index dc2177fec715..9cd4096a8ffa 100644 ---- a/drivers/tty/vt/conmakehash.c -+++ b/drivers/tty/vt/conmakehash.c -@@ -112,6 +112,8 @@ int main(int argc, char *argv[]) - else - rel_tblname = tblname; - -+ rel_tblname = argv[2]; -+ - /* For now we assume the default font is always 256 characters. */ - fontlen = 256; - --- -2.17.1 diff --git a/meta-ti-bsp/recipes-security/optee/optee-os/0001-plat-k3-drivers-Open-TRNG-firewall-for-TIFS-on-all-k.patch b/meta-ti-bsp/recipes-security/optee/optee-os/0001-plat-k3-drivers-Open-TRNG-firewall-for-TIFS-on-all-k.patch deleted file mode 100644 index 59d7a795..00000000 --- a/meta-ti-bsp/recipes-security/optee/optee-os/0001-plat-k3-drivers-Open-TRNG-firewall-for-TIFS-on-all-k.patch +++ /dev/null @@ -1,45 +0,0 @@ -From 00f74ba2ab00088d51e6da3c0eefe50599ef5c82 Mon Sep 17 00:00:00 2001 -From: Prasanth Babu Mantena <[email protected]> -Date: Mon, 3 Nov 2025 12:42:57 +0530 -Subject: [PATCH] plat-k3: drivers: Open TRNG firewall for TIFS on all k3 devs - -On k3 devices, TRNG is firewalled to be accessed only by OPTEE. - -TIFS needs this for the encryption and decryption services to support -different low power modes. So, open firewall to TIFS as well. - -There is no concurrent usage of TRNG, as TIFS uses TRNG only at suspend -when OPTEE is down and resume, when firewalls are restored but OPTEE is -not up yet. - -As this is a firewall that required to be shared along with TIFS on all -devices, making this a common change and open on all devs. - -Upstream-Status: Submitted [https://github.com/OP-TEE/optee_os/pull/7582] - -Signed-off-by: Prasanth Babu Mantena <[email protected]> -Reviewed-by: Manorit Chawdhry <[email protected]> -Reviewed-by: Andrew Davis <[email protected]> ---- - core/arch/arm/plat-k3/drivers/sa2ul.c | 5 ----- - 1 file changed, 5 deletions(-) - -diff --git a/core/arch/arm/plat-k3/drivers/sa2ul.c b/core/arch/arm/plat-k3/drivers/sa2ul.c -index c50757b2c..e10bde131 100644 ---- a/core/arch/arm/plat-k3/drivers/sa2ul.c -+++ b/core/arch/arm/plat-k3/drivers/sa2ul.c -@@ -121,12 +121,7 @@ static TEE_Result sa2ul_init(void) - start_address = RNG_BASE; - end_address = RNG_BASE + RNG_REG_SIZE - 1; - permissions[num_perm++] = (FW_BIG_ARM_PRIVID << 16) | FW_SECURE_ONLY; --#if defined(PLATFORM_FLAVOR_am62x) || \ -- defined(PLATFORM_FLAVOR_am62ax) || \ -- defined(PLATFORM_FLAVOR_am62px) -- - permissions[num_perm++] = (FW_TIFS_PRIVID << 16) | FW_NON_SECURE; --#endif - ret = ti_sci_set_fwl_region(fwl_id, rng_region, num_perm, - control, permissions, - start_address, end_address); --- -2.34.1 -- 2.43.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#19569): https://lists.yoctoproject.org/g/meta-ti/message/19569 Mute This Topic: https://lists.yoctoproject.org/mt/117966246/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-ti/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
