diff options
-rw-r--r-- | conf/machine/am335x-evm.conf | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/conf/machine/am335x-evm.conf b/conf/machine/am335x-evm.conf index eedf0723..e7ddd0be 100644 --- a/conf/machine/am335x-evm.conf +++ b/conf/machine/am335x-evm.conf | |||
@@ -12,12 +12,33 @@ GUI_MACHINE_CLASS = "smallscreen" | |||
12 | 12 | ||
13 | require conf/machine/include/ti33x.inc | 13 | require conf/machine/include/ti33x.inc |
14 | 14 | ||
15 | IMAGE_FSTYPES ?= "tar.bz2" | 15 | IMAGE_FSTYPES += "ubi tar.bz2" |
16 | 16 | ||
17 | SERIAL_CONSOLE = "115200 ttyO0" | 17 | SERIAL_CONSOLE = "115200 ttyO0" |
18 | 18 | ||
19 | PREFERRED_PROVIDER_virtual/kernel = "linux-ti33x-psp" | 19 | PREFERRED_PROVIDER_virtual/kernel = "linux-ti33x-psp" |
20 | 20 | ||
21 | # UBI information. Note that this is board and kernel specific. Changes | ||
22 | # in your kernel port may require changes in these variables. For more | ||
23 | # details about this board please see | ||
24 | # http://processors.wiki.ti.com/index.php/UBIFS_Support | ||
25 | |||
26 | # do ubiattach /dev/ubi_ctrl -m 7 -O 2048 | ||
27 | # From dmesg: | ||
28 | # UBI: smallest flash I/O unit: 2048 | ||
29 | # UBI: logical eraseblock size: 126976 bytes | ||
30 | # from ubiattach stdout: | ||
31 | # UBI device number 0, total 1988 LEBs | ||
32 | MKUBIFS_ARGS = "-F -m 2048 -e 126976 -c 1988" | ||
33 | |||
34 | # do ubiattach /dev/ubi_ctrl -m 7 -O 2048 | ||
35 | # from dmesg: | ||
36 | # UBI: smallest flash I/O unit: 2048 | ||
37 | # UBI: physical eraseblock size: 131072 bytes (128 KiB) | ||
38 | # UBI: sub-page size: 512 | ||
39 | # UBI: VID header offset: 2048 (aligned 2048) | ||
40 | UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512 -O 2048" | ||
41 | |||
21 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot" | 42 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot" |
22 | 43 | ||
23 | UBOOT_ARCH = "arm" | 44 | UBOOT_ARCH = "arm" |