From 57f0f512b273f60d52568b8c6b77e17f5636edc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Fabian=20Silva=20Delgado?= Date: Wed, 5 Aug 2015 17:04:01 -0300 Subject: Initial import --- scripts/headers.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 scripts/headers.sh (limited to 'scripts/headers.sh') diff --git a/scripts/headers.sh b/scripts/headers.sh new file mode 100755 index 000000000..d4dc4de5c --- /dev/null +++ b/scripts/headers.sh @@ -0,0 +1,28 @@ +#!/bin/sh +# Run headers_$1 command for all suitable architectures + +# Stop on error +set -e + +do_command() +{ + if [ -f ${srctree}/arch/$2/include/asm/Kbuild ]; then + make ARCH=$2 KBUILD_HEADERS=$1 headers_$1 + else + printf "Ignoring arch: %s\n" ${arch} + fi +} + +archs=${HDR_ARCH_LIST:-$(ls ${srctree}/arch)} + +for arch in ${archs}; do + case ${arch} in + um) # no userspace export + ;; + *) + if [ -d ${srctree}/arch/${arch} ]; then + do_command $1 ${arch} + fi + ;; + esac +done -- cgit v1.2.3