Config.in 939 B

123456789101112131415161718192021222324252627282930
  1. menu "Target filesystem options"
  2. config BR2_ROOTFS_POST_BUILD_SCRIPT
  3. string "Custom script to run before packing files"
  4. default ""
  5. help
  6. Specify a script to be run after the build has finished and before
  7. the BR2 starts packing the files into selected packages.
  8. This gives users the oportunity to do board-specific cleanups,
  9. add-ons and the like, so the generated files can be used directly
  10. without further processing.
  11. The script is called with the target directory name as first and
  12. only argument. Make sure the exit code of that script is 0,
  13. otherwise make will stop after calling it.
  14. source "fs/cramfs/Config.in"
  15. source "fs/cloop/Config.in"
  16. source "fs/ext2/Config.in"
  17. source "fs/jffs2/Config.in"
  18. source "fs/ubifs/Config.in"
  19. source "fs/squashfs/Config.in"
  20. source "fs/tar/Config.in"
  21. source "fs/cpio/Config.in"
  22. source "fs/iso9660/Config.in"
  23. source "fs/initramfs/Config.in"
  24. source "fs/romfs/Config.in"
  25. endmenu