genvideolist.sh 777 B

123456789101112131415161718192021222324252627
  1. #! /bin/sh
  2. #
  3. # Copyright (C) 2005,2008,2009 Free Software Foundation, Inc.
  4. #
  5. # This script is free software; the author
  6. # gives unlimited permission to copy and/or distribute it,
  7. # with or without modifications, as long as this notice is preserved.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  11. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12. # PARTICULAR PURPOSE.
  13. # Read source code from stdin and detect partmap names.
  14. module=$1
  15. # Ignore video.mod.
  16. if test $module = video; then
  17. exit
  18. fi
  19. # For now, this emits only a module name, if the module registers a partition map.
  20. if grep -v "^#" | grep '^ *grub_video_register' >/dev/null 2>&1; then
  21. echo $module
  22. fi