Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. config BR2_ROOTFS_DEVICE_TABLE
  15. string "Path to the device table"
  16. default "target/generic/device_table.txt"
  17. help
  18. Specify the location of a device table, that will be passed
  19. to the makedevs utility to create all the special device
  20. files in the target filesystem.
  21. source "fs/cramfs/Config.in"
  22. source "fs/cloop/Config.in"
  23. source "fs/ext2/Config.in"
  24. source "fs/jffs2/Config.in"
  25. source "fs/ubifs/Config.in"
  26. source "fs/squashfs/Config.in"
  27. source "fs/tar/Config.in"
  28. source "fs/cpio/Config.in"
  29. source "fs/iso9660/Config.in"
  30. source "fs/initramfs/Config.in"
  31. source "fs/romfs/Config.in"
  32. endmenu