Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config BR2_TARGET_ROOTFS_EXT2
  2. bool "ext2 root filesystem for the target device"
  3. default y
  4. help
  5. Build an ext2 root filesystem
  6. config BR2_TARGET_ROOTFS_EXT2_BLOCKS
  7. int "size in blocks (leave at 0 for auto calculation)"
  8. depends on BR2_TARGET_ROOTFS_EXT2
  9. default 0
  10. config BR2_TARGET_ROOTFS_EXT2_INODES
  11. int "inodes (leave at 0 for auto calculation)"
  12. depends on BR2_TARGET_ROOTFS_EXT2
  13. default 0
  14. config BR2_TARGET_ROOTFS_EXT2_RESBLKS
  15. int "reserved blocks"
  16. depends on BR2_TARGET_ROOTFS_EXT2
  17. default 0
  18. config BR2_TARGET_ROOTFS_EXT2_SQUASH
  19. bool "Make all files be owned by root"
  20. depends on BR2_TARGET_ROOTFS_EXT2
  21. default y
  22. config BR2_TARGET_ROOTFS_EXT2_OUTPUT
  23. string "Output File"
  24. depends on BR2_TARGET_ROOTFS_EXT2
  25. default "$(IMAGE).ext2"
  26. config BR2_TARGET_ROOTFS_EXT2_GZ
  27. bool "gzip the output file"
  28. depends on BR2_TARGET_ROOTFS_EXT2
  29. default n
  30. config BR2_TARGET_ROOTFS_EXT2_COPYTO
  31. string "also copy the image to..."
  32. depends on BR2_TARGET_ROOTFS_EXT2
  33. default ""
  34. help
  35. Copies the resulting image to a secondary location
  36. like a tftp server's root directory.