treewide: Add SPDX license identifier - Makefile/Kconfig
[linux-2.6-block.git] / tools / testing / selftests / kexec / Makefile
CommitLineData
ec8f24b7 1# SPDX-License-Identifier: GPL-2.0-only
973b71c6 2# Makefile for kexec tests
a802ed0d
MZ
3
4uname_M := $(shell uname -m 2>/dev/null || echo not)
5ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
6
7ifeq ($(ARCH),x86)
973b71c6 8TEST_PROGS := test_kexec_load.sh test_kexec_file_load.sh
5025b0f0 9TEST_FILES := kexec_common_lib.sh
a802ed0d
MZ
10
11include ../lib.mk
12
13endif