diff options
author | Denys Dmytriyenko <denys@ti.com> | 2017-03-21 00:38:05 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2017-03-21 21:21:05 -0400 |
commit | 127edce6a099d5bb1c2af64ced3299bcffd7632a (patch) | |
tree | 5d565b33b611f66d706e787095785bbbde53425b /conf | |
parent | be4295af71434fbc98746116bb91200784c6bbac (diff) | |
download | meta-ti-127edce6a099d5bb1c2af64ced3299bcffd7632a.tar.gz |
beagle-x15: add separate config for BeagleBoard X15
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/beagle-x15.conf | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/conf/machine/beagle-x15.conf b/conf/machine/beagle-x15.conf new file mode 100644 index 00000000..e4552cd7 --- /dev/null +++ b/conf/machine/beagle-x15.conf | |||
@@ -0,0 +1,36 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: BeagleBoard X15 | ||
3 | #@DESCRIPTION: Machine configuration for the BeagleBoard X15 | ||
4 | |||
5 | require conf/machine/include/dra7xx.inc | ||
6 | |||
7 | MACHINE_GUI_CLASS = "bigscreen" | ||
8 | |||
9 | IMAGE_FSTYPES += "tar.xz" | ||
10 | |||
11 | SERIAL_CONSOLE = "115200 ttyS2" | ||
12 | |||
13 | KERNEL_DEVICETREE = "am57xx-beagle-x15.dtb am57xx-beagle-x15-revb1.dtb" | ||
14 | |||
15 | UBOOT_MACHINE = "am57xx_evm_config" | ||
16 | |||
17 | # UBI information. Note that this is board and kernel specific. Changes | ||
18 | # in your kernel port may require changes in these variables. For more | ||
19 | # details about this board please see | ||
20 | # http://processors.wiki.ti.com/index.php/UBIFS_Support | ||
21 | |||
22 | # do ubiattach /dev/ubi_ctrl -m 7 -O 2048 | ||
23 | # From dmesg: | ||
24 | # UBI: smallest flash I/O unit: 2048 | ||
25 | # UBI: logical eraseblock size: 126976 bytes | ||
26 | # from ubiattach stdout: | ||
27 | # UBI device number 0, total 1988 LEBs | ||
28 | MKUBIFS_ARGS = "-F -m 2048 -e 126976 -c 8192" | ||
29 | |||
30 | # do ubiattach /dev/ubi_ctrl -m 7 -O 2048 | ||
31 | # from dmesg: | ||
32 | # UBI: smallest flash I/O unit: 2048 | ||
33 | # UBI: physical eraseblock size: 131072 bytes (128 KiB) | ||
34 | # UBI: sub-page size: 512 | ||
35 | # UBI: VID header offset: 2048 (aligned 2048) | ||
36 | UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512 -O 2048" | ||