Source
1
1
#!/bin/sh
2
+
# SPDX-License-Identifier: GPL-2.0
2
3
# A script to dump mixed source code & assembly
3
4
# with correct relocations from System.map
4
5
# Requires the following lines in makefile:
5
6
#%.lst: %.c
6
7
# $(CC) $(c_flags) -g -c -o $*.o $< &&
7
8
# $(srctree)/scripts/makelst $*.o System.map $(OBJDUMP) > $@
8
9
#
9
10
# Copyright (C) 2000 IBM Corporation
10
11
# Author(s): DJ Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
11
12
# William Stearns <wstearns@pobox.com>