blob: a162258ab606380bd07952149d76ea43094f274f [file] [log] [blame]
Nicolas Pitre23121ca2016-01-26 21:50:18 -05001#!/bin/sh
2
3# Script to create/update include/generated/autoksyms.h and dependency files
4#
5# Copyright: (C) 2016 Linaro Limited
6# Created by: Nicolas Pitre, January 2016
7#
8# This program is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License version 2 as
10# published by the Free Software Foundation.
11
12# Create/update the include/generated/autoksyms.h file from the list
13# of all module's needed symbols as recorded on the third line of
14# .tmp_versions/*.mod files.
15#
16# For each symbol being added or removed, the corresponding dependency
17# file's timestamp is updated to force a rebuild of the affected source
18# file. All arguments passed to this script are assumed to be a command
19# to be exec'd to trigger a rebuild of those files.
20
21set -e
22
23cur_ksyms_file="include/generated/autoksyms.h"
24new_ksyms_file="include/generated/autoksyms.h.tmpnew"
25
26info() {
27 if [ "$quiet" != "silent_" ]; then
28 printf " %-7s %s\n" "$1" "$2"
29 fi
30}
31
32info "CHK" "$cur_ksyms_file"
33
34# Use "make V=1" to debug this script.
35case "$KBUILD_VERBOSE" in
36*1*)
37 set -x
38 ;;
39esac
40
41# We need access to CONFIG_ symbols
42case "${KCONFIG_CONFIG}" in
43*/*)
44 . "${KCONFIG_CONFIG}"
45 ;;
46*)
47 # Force using a file from the current directory
48 . "./${KCONFIG_CONFIG}"
49esac
50
51# In case it doesn't exist yet...
52if [ -e "$cur_ksyms_file" ]; then touch "$cur_ksyms_file"; fi
53
54# Generate a new ksym list file with symbols needed by the current
55# set of modules.
56cat > "$new_ksyms_file" << EOT
57/*
58 * Automatically generated file; DO NOT EDIT.
59 */
60
61EOT
Nicolas Pitred0734722016-12-08 14:17:03 -050062[ "$(ls -A "$MODVERDIR")" ] &&
Michael Forney1fe7d2b2018-02-06 22:41:17 -080063for mod in "$MODVERDIR"/*.mod; do
64 sed -n -e '3{s/ /\n/g;/^$/!p;}' "$mod"
65done | sort -u |
Nicolas Pitre23121ca2016-01-26 21:50:18 -050066while read sym; do
67 if [ -n "$CONFIG_HAVE_UNDERSCORE_SYMBOL_PREFIX" ]; then
68 sym="${sym#_}"
69 fi
70 echo "#define __KSYM_${sym} 1"
71done >> "$new_ksyms_file"
72
73# Special case for modversions (see modpost.c)
74if [ -n "$CONFIG_MODVERSIONS" ]; then
75 echo "#define __KSYM_module_layout 1" >> "$new_ksyms_file"
76fi
77
78# Extract changes between old and new list and touch corresponding
79# dependency files.
80changed=$(
81count=0
82sort "$cur_ksyms_file" "$new_ksyms_file" | uniq -u |
83sed -n 's/^#define __KSYM_\(.*\) 1/\1/p' | tr "A-Z_" "a-z/" |
84while read sympath; do
85 if [ -z "$sympath" ]; then continue; fi
86 depfile="include/config/ksym/${sympath}.h"
87 mkdir -p "$(dirname "$depfile")"
88 touch "$depfile"
89 echo $((count += 1))
90done | tail -1 )
91changed=${changed:-0}
92
93if [ $changed -gt 0 ]; then
94 # Replace the old list with tne new one
95 old=$(grep -c "^#define __KSYM_" "$cur_ksyms_file" || true)
96 new=$(grep -c "^#define __KSYM_" "$new_ksyms_file" || true)
97 info "KSYMS" "symbols: before=$old, after=$new, changed=$changed"
98 info "UPD" "$cur_ksyms_file"
99 mv -f "$new_ksyms_file" "$cur_ksyms_file"
100 # Then trigger a rebuild of affected source files
101 exec $@
102else
103 rm -f "$new_ksyms_file"
104fi