OpenSDE Framework (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.5 KiB

  1. #!/bin/sh
  2. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. #
  5. # Filename: target/generic/config.in
  6. # Copyright (C) 2006 - 2010 The OpenSDE Project
  7. # Copyright (C) 2004 - 2006 The T2 SDE Project
  8. #
  9. # More information can be found in the files COPYING and README.
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; version 2 of the License. A copy of the
  14. # GNU General Public License can be found in the file COPYING.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. #Description: Generic System
  17. choice SDECFG_PKGSEL_TPL none none 'No package preselection template' \
  18. $( cd target/$SDECFG_TARGET/pkgsel;
  19. grep -H "^# *Description *: " *.choice | tr ' ' '_' |
  20. sed -e 's,^[0-9][0-9]*-,,' \
  21. -e 's,\.choice:#_*Description_*:_, ,' )
  22. # Apply template
  23. if [ "$SDECFG_PKGSEL_TPL" != none ]; then
  24. if [ ! -f $cfgtmpdir/pkgsel.$SDECFG_PKGSEL_TPL.awk ]; then
  25. cat <<-EOT > $cfgtmpdir/pkgsel.$SDECFG_PKGSEL_TPL.awk
  26. # created from '$SDECFG_PKGSEL_TPL' template
  27. #
  28. EOT
  29. lib/sde-config/pkgsel2awk.sh \
  30. $( ls -1 target/$target/pkgsel/{[0-9][0-9]-,}$SDECFG_PKGSEL_TPL.choice 2> /dev/null ) \
  31. >> $cfgtmpdir/pkgsel.$SDECFG_PKGSEL_TPL.awk
  32. fi
  33. pkgfilter awk -f $cfgtmpdir/pkgsel.$SDECFG_PKGSEL_TPL.awk
  34. if [ -f target/$SDECFG_TARGET/pkgsel/$SDECFG_PKGSEL_TPL.conf ]; then
  35. . target/$SDECFG_TARGET/pkgsel/$SDECFG_PKGSEL_TPL.conf
  36. fi
  37. fi