summaryrefslogtreecommitdiff
path: root/target/squashfs/Config.in
blob: 9259ba350ebca629ada458e9a02402080d718e34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
config BR2_TARGET_ROOTFS_SQUASHFS
	bool "squashfs root filesystem"
	select BR2_HOST_FAKEROOT
	help
	  Build a squashfs root filesystem

choice
	prompt "Squashfs version"
	default BR2_TARGET_ROOTFS_SQUASHFS_4
	depends on BR2_TARGET_ROOTFS_SQUASHFS
	help
	  Select squashfs version - This must match what your kernel
	  supports. Select 3.x if you use the legacy 3.x kernel
	  patches (pre 2.6.29), and 4.x otherwise.

config BR2_TARGET_ROOTFS_SQUASHFS_3
       depends on BR2_DEPRECATED || BR2_RECENT
       bool "3.x"
       help
         Select this if you use the legacy 3.x kernel patches (pre 2.6.29)

config BR2_TARGET_ROOTFS_SQUASHFS_4
       bool "4.x"
       help
         Select this if you use the squashfs version in mainline (from 2.6.29)

endchoice

config BR2_TARGET_ROOTFS_SQUASHFS_VERSION
	string
	default "3.4"	if BR2_TARGET_ROOTFS_SQUASHFS_3
	default "4.0"	if BR2_TARGET_ROOTFS_SQUASHFS_4