mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
ec8f24b7fa
Add SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any form These files fall under the project license, GPL v2 only. The resulting SPDX license identifier is: GPL-2.0-only Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
14 lines
329 B
Makefile
14 lines
329 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Makefile for kexec tests
|
|
|
|
uname_M := $(shell uname -m 2>/dev/null || echo not)
|
|
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
|
|
|
|
ifeq ($(ARCH),x86)
|
|
TEST_PROGS := test_kexec_load.sh test_kexec_file_load.sh
|
|
TEST_FILES := kexec_common_lib.sh
|
|
|
|
include ../lib.mk
|
|
|
|
endif
|