Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. config BR2_TARGET_ROOTFS_JFFS2
  2. bool "jffs2 root filesystem for the target device"
  3. default n
  4. help
  5. Build a jffs2 root filesystem
  6. config BR2_TARGET_ROOTFS_JFFS2_EBSIZE
  7. hex "Erase block size"
  8. depends on BR2_TARGET_ROOTFS_JFFS2
  9. default 0x20000
  10. config BR2_TARGET_ROOTFS_JFFS2_PAD
  11. bool "Pad output"
  12. depends on BR2_TARGET_ROOTFS_JFFS2
  13. config BR2_TARGET_ROOTFS_JFFS2_PADSIZE
  14. hex "Pad output size (0x0 = to end of EB)"
  15. depends on BR2_TARGET_ROOTFS_JFFS2_PAD
  16. default 0x0
  17. help
  18. Set to 0x0 to pad to end of erase block.
  19. choice
  20. prompt "Endianess"
  21. default BR2_TARGET_ROOTFS_JFFS2_LE
  22. depends on BR2_TARGET_ROOTFS_JFFS2
  23. config BR2_TARGET_ROOTFS_JFFS2_LE
  24. bool "little-endian"
  25. depends on BR2_TARGET_ROOTFS_JFFS2
  26. config BR2_TARGET_ROOTFS_JFFS2_BE
  27. bool "big-endian"
  28. depends on BR2_TARGET_ROOTFS_JFFS2
  29. endchoice
  30. config BR2_TARGET_ROOTFS_JFFS2_SQUASH
  31. bool "Make all files be owned by root"
  32. depends on BR2_TARGET_ROOTFS_JFFS2
  33. config BR2_TARGET_ROOTFS_JFFS2_OUTPUT
  34. string "Output File"
  35. depends on BR2_TARGET_ROOTFS_JFFS2
  36. default "$(IMAGE).jffs2"
  37. config BR2_TARGET_ROOTFS_JFFS2_COPYTO
  38. string "also copy the image to..."
  39. depends on BR2_TARGET_ROOTFS_JFFS2
  40. default ""
  41. help
  42. Copies the resulting image to a secondary location.