blob: 35fa4987d13dc6c23a0a2cb51ea55ead41d902b2 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
config BR2_TARGET_ROOTFS_JFFS2
bool "jffs2 root filesystem"
default n
select BR2_HOST_FAKEROOT
select BR2_PACKAGE_MTD
help
Build a jffs2 root filesystem
choice
prompt "Memory Type"
default BR2_TARGET_ROOTFS_JFFS2_FLASH
depends on BR2_TARGET_ROOTFS_JFFS2
config BR2_TARGET_ROOTFS_JFFS2_FLASH
bool "Parallel flash with 4 kB pagesize"
depends on BR2_TARGET_ROOTFS_JFFS2
config BR2_TARGET_ROOTFS_JFFS2_DATAFLASH
bool "AT45 dataflash with 1056 byte pagesize"
depends on BR2_TARGET_ROOTFS_JFFS2
select BR2_TARGET_ROOTFS_JFFS2_NOCLEANMARKER
endchoice
config BR2_TARGET_ROOTFS_JFFS2_PAGESIZE
hex "Page Size"
depends on BR2_TARGET_ROOTFS_JFFS2_FLASH
default 0x1000
help
Set to pagesize of memory (Dataflash is 0x210 or 0x420)
config BR2_TARGET_ROOTFS_JFFS2_PAGESIZE
hex "Page Size"
depends on BR2_TARGET_ROOTFS_JFFS2_DATAFLASH
default 0x420
help
Set to pagesize of memory (Dataflash is 0x210 or 0x420)
config BR2_TARGET_ROOTFS_JFFS2_EBSIZE
hex "Erase block size"
depends on BR2_TARGET_ROOTFS_JFFS2_FLASH
default 0x20000
config BR2_TARGET_ROOTFS_JFFS2_EBSIZE
hex "Erase block size"
depends on BR2_TARGET_ROOTFS_JFFS2_DATAFLASH
default 0x2100
config BR2_TARGET_ROOTFS_JFFS2_NOCLEANMARKER
bool "Do not use Cleanmarker"
depends on BR2_TARGET_ROOTFS_JFFS2
default n
help
Do not use cleanmarkers if using NAND flash or Dataflash where
the pagesize is not a power of 2
config BR2_JFFS2_TARGET_SREC
bool "RootFS in SREC file formet"
depends on BR2_TARGET_ROOTFS_JFFS2
default n
config BR2_TARGET_ROOTFS_JFFS2_PAD
bool "Pad output"
depends on BR2_TARGET_ROOTFS_JFFS2
config BR2_TARGET_ROOTFS_JFFS2_PADSIZE
hex "Pad output size (0x0 = to end of EB)"
depends on BR2_TARGET_ROOTFS_JFFS2_PAD
default 0x0
help
Set to 0x0 to pad to end of erase block.
choice
prompt "Endianess"
default BR2_TARGET_ROOTFS_JFFS2_LE
depends on BR2_TARGET_ROOTFS_JFFS2
config BR2_TARGET_ROOTFS_JFFS2_LE
bool "little-endian"
depends on BR2_TARGET_ROOTFS_JFFS2
config BR2_TARGET_ROOTFS_JFFS2_BE
bool "big-endian"
depends on BR2_TARGET_ROOTFS_JFFS2
endchoice
config BR2_TARGET_ROOTFS_JFFS2_SQUASH
bool "Make all files be owned by root"
depends on BR2_TARGET_ROOTFS_JFFS2
config BR2_TARGET_ROOTFS_JFFS2_OUTPUT
string "Output File"
depends on BR2_TARGET_ROOTFS_JFFS2
default "$(IMAGE).jffs2"
config BR2_TARGET_ROOTFS_JFFS2_COPYTO
string "also copy the image to..."
depends on BR2_TARGET_ROOTFS_JFFS2
default ""
help
Copies the resulting image to a secondary location.
|