blob: 84bf6b500815a9ed930e99385dc77c3c60adabf9 [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
Masahiro Yamada94cf8ac2019-03-08 14:49:10 +090042. include/config/auto.conf
Nicolas Pitre23121ca2016-01-26 21:50:18 -050043
Nicolas Pitre23121ca2016-01-26 21:50:18 -050044# Generate a new ksym list file with symbols needed by the current
45# set of modules.
46cat > "$new_ksyms_file" << EOT
47/*
48 * Automatically generated file; DO NOT EDIT.
49 */
50
51EOT
Nicolas Pitred0734722016-12-08 14:17:03 -050052[ "$(ls -A "$MODVERDIR")" ] &&
Michael Forney1fe7d2b2018-02-06 22:41:17 -080053for mod in "$MODVERDIR"/*.mod; do
54 sed -n -e '3{s/ /\n/g;/^$/!p;}' "$mod"
55done | sort -u |
Nicolas Pitre23121ca2016-01-26 21:50:18 -050056while read sym; do
Nicolas Pitre23121ca2016-01-26 21:50:18 -050057 echo "#define __KSYM_${sym} 1"
58done >> "$new_ksyms_file"
59
60# Special case for modversions (see modpost.c)
61if [ -n "$CONFIG_MODVERSIONS" ]; then
62 echo "#define __KSYM_module_layout 1" >> "$new_ksyms_file"
63fi
64
65# Extract changes between old and new list and touch corresponding
66# dependency files.
67changed=$(
68count=0
69sort "$cur_ksyms_file" "$new_ksyms_file" | uniq -u |
70sed -n 's/^#define __KSYM_\(.*\) 1/\1/p' | tr "A-Z_" "a-z/" |
71while read sympath; do
72 if [ -z "$sympath" ]; then continue; fi
Masahiro Yamadafbfa9be2018-03-16 16:37:14 +090073 depfile="include/ksym/${sympath}.h"
Nicolas Pitre23121ca2016-01-26 21:50:18 -050074 mkdir -p "$(dirname "$depfile")"
75 touch "$depfile"
Nicolas Pitre825d4872018-03-15 16:56:20 -040076 # Filesystems with coarse time precision may create timestamps
77 # equal to the one from a file that was very recently built and that
78 # needs to be rebuild. Let's guard against that by making sure our
79 # dep files are always newer than the first file we created here.
80 while [ ! "$depfile" -nt "$new_ksyms_file" ]; do
81 touch "$depfile"
82 done
Nicolas Pitre23121ca2016-01-26 21:50:18 -050083 echo $((count += 1))
84done | tail -1 )
85changed=${changed:-0}
86
87if [ $changed -gt 0 ]; then
88 # Replace the old list with tne new one
89 old=$(grep -c "^#define __KSYM_" "$cur_ksyms_file" || true)
90 new=$(grep -c "^#define __KSYM_" "$new_ksyms_file" || true)
91 info "KSYMS" "symbols: before=$old, after=$new, changed=$changed"
92 info "UPD" "$cur_ksyms_file"
93 mv -f "$new_ksyms_file" "$cur_ksyms_file"
94 # Then trigger a rebuild of affected source files
95 exec $@
96else
97 rm -f "$new_ksyms_file"
98fi