sys-kernel/coreos-sources: Drop unnecessary arm64 tools patch

The hv-daemons package has been adjusted instead.

Signed-off-by: James Le Cuirot <jlecuirot@microsoft.com>
This commit is contained in:
James Le Cuirot 2025-12-12 17:00:12 +00:00
parent 71930b71c9
commit 102ffc86fc
No known key found for this signature in database
GPG Key ID: 1226415D00DD3137
2 changed files with 0 additions and 36 deletions

View File

@ -47,6 +47,5 @@ UNIPATCH_LIST="
${PATCH_DIR}/z0005-efi-lock-down-the-kernel-if-booted-in-secure-boot-mo.patch \
${PATCH_DIR}/z0006-mtd-disable-slram-and-phram-when-locked-down.patch \
${PATCH_DIR}/z0007-arm64-add-kernel-config-option-to-lock-down-when.patch \
${PATCH_DIR}/z0008-tools-hv-fix-cross-compilation-for-ARM64.patch \
${PATCH_DIR}/z0009-block-add-partition-uuid-into-uevent.patch \
"

View File

@ -1,35 +0,0 @@
From 0890eb69da82aec12518a5c2998afea467a0e9d7 Mon Sep 17 00:00:00 2001
From: Adrian Vladu <avladu@cloudbasesolutions.com>
Date: Thu, 19 Sep 2024 07:59:59 +0000
Subject: [PATCH] tools: hv: fix cross-compilation for ARM64
---
tools/hv/Makefile | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tools/hv/Makefile b/tools/hv/Makefile
index 2e60e2c212cd..d72554cedbf6 100644
--- a/tools/hv/Makefile
+++ b/tools/hv/Makefile
@@ -2,7 +2,9 @@
# Makefile for Hyper-V tools
include ../scripts/Makefile.include
+ifeq ($(ARCH),)
ARCH := $(shell uname -m 2>/dev/null)
+endif
sbindir ?= /usr/sbin
libexecdir ?= /usr/libexec
sharedstatedir ?= /var/lib
@@ -20,7 +22,7 @@ override CFLAGS += -O2 -Wall -g -D_GNU_SOURCE -I$(OUTPUT)include
override CFLAGS += -Wno-address-of-packed-member
ALL_TARGETS := hv_kvp_daemon hv_vss_daemon
-ifneq ($(ARCH), aarch64)
+ifeq ($(filter $(ARCH),aarch64 arm64),)
ALL_TARGETS += hv_fcopy_uio_daemon
endif
ALL_PROGRAMS := $(patsubst %,$(OUTPUT)%,$(ALL_TARGETS))
--
2.34.1