Config.in 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. choice
  22. prompt "Root FS skeleton"
  23. config BR2_ROOTFS_SKELETON_DEFAULT
  24. bool "default target skeleton"
  25. help
  26. Use default target skeleton
  27. config BR2_ROOTFS_SKELETON_CUSTOM
  28. bool "custom target skeleton"
  29. help
  30. Use custom target skeleton.
  31. endchoice
  32. if BR2_ROOTFS_SKELETON_CUSTOM
  33. config BR2_ROOTFS_SKELETON_CUSTOM_PATH
  34. string "custom target skeleton path"
  35. default "fs/skeleton"
  36. help
  37. Path custom target skeleton.
  38. endif
  39. source "fs/cramfs/Config.in"
  40. source "fs/cloop/Config.in"
  41. source "fs/ext2/Config.in"
  42. source "fs/jffs2/Config.in"
  43. source "fs/ubifs/Config.in"
  44. source "fs/squashfs/Config.in"
  45. source "fs/tar/Config.in"
  46. source "fs/cpio/Config.in"
  47. source "fs/iso9660/Config.in"
  48. source "fs/initramfs/Config.in"
  49. source "fs/romfs/Config.in"
  50. endmenu