diff options
-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" | ||