The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/scripts/headers.sh

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #!/bin/sh
    2 # Run headers_$1 command for all suitable architectures
    3 
    4 # Stop on error
    5 set -e
    6 
    7 do_command()
    8 {
    9         if [ -f ${srctree}/arch/$2/include/asm/Kbuild ]; then
   10                 make ARCH=$2 KBUILD_HEADERS=$1 headers_$1
   11         else
   12                 printf "Ignoring arch: %s\n" ${arch}
   13         fi
   14 }
   15 
   16 archs=${HDR_ARCH_LIST:-$(ls ${srctree}/arch)}
   17 
   18 for arch in ${archs}; do
   19         case ${arch} in
   20         um)        # no userspace export
   21                 ;;
   22         cris)      # headers export are known broken
   23                 ;;
   24         *)
   25                 if [ -d ${srctree}/arch/${arch} ]; then
   26                         do_command $1 ${arch}
   27                 fi
   28                 ;;
   29         esac
   30 done
   31 
   32 

Cache object: 771c49bbc789f6539f7699d4425d64f6


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.