prom_init_check.sh 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #!/bin/sh
  2. #
  3. # Copyright © 2008 IBM Corporation
  4. #
  5. # This program is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU General Public License
  7. # as published by the Free Software Foundation; either version
  8. # 2 of the License, or (at your option) any later version.
  9. # This script checks prom_init.o to see what external symbols it
  10. # is using, if it finds symbols not in the whitelist it returns
  11. # an error. The point of this is to discourage people from
  12. # intentionally or accidentally adding new code to prom_init.c
  13. # which has side effects on other parts of the kernel.
  14. # If you really need to reference something from prom_init.o add
  15. # it to the list below:
  16. WHITELIST="add_reloc_offset __bss_start __bss_stop copy_and_flush
  17. _end enter_prom memcpy memset reloc_offset __secondary_hold
  18. __secondary_hold_acknowledge __secondary_hold_spinloop __start
  19. strcmp strcpy strlcpy strlen strncmp strstr logo_linux_clut224
  20. reloc_got2"
  21. NM="$1"
  22. OBJ="$2"
  23. ERROR=0
  24. for UNDEF in $($NM -u $OBJ | awk '{print $2}')
  25. do
  26. # On 64-bit nm gives us the function descriptors, which have
  27. # a leading . on the name, so strip it off here.
  28. UNDEF="${UNDEF#.}"
  29. if [ $KBUILD_VERBOSE ]; then
  30. if [ $KBUILD_VERBOSE -ne 0 ]; then
  31. echo "Checking prom_init.o symbol '$UNDEF'"
  32. fi
  33. fi
  34. OK=0
  35. for WHITE in $WHITELIST
  36. do
  37. if [ "$UNDEF" = "$WHITE" ]; then
  38. OK=1
  39. break
  40. fi
  41. done
  42. if [ $OK -eq 0 ]; then
  43. ERROR=1
  44. echo "Error: External symbol '$UNDEF' referenced" \
  45. "from prom_init.c" >&2
  46. fi
  47. done
  48. exit $ERROR