brintos

brintos / linux-shallow public Read only

0
0
Text · 379 B · 67fe7a4 Raw
14 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2# Makefile for kexec tests3 4ARCH ?= $(shell uname -m 2>/dev/null || echo not)5ARCH_PROCESSED := $(shell echo $(ARCH) | sed -e s/i.86/x86/ -e s/x86_64/x86/)6 7ifeq ($(ARCH_PROCESSED),$(filter $(ARCH_PROCESSED),x86 ppc64le))8TEST_PROGS := test_kexec_load.sh test_kexec_file_load.sh9TEST_FILES := kexec_common_lib.sh10 11include ../lib.mk12 13endif14