diff options
author | Denys Dmytriyenko <denys@ti.com> | 2012-06-11 20:44:56 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2012-06-11 20:44:56 -0400 |
commit | 88867c1d96684925027a0ecc9e25c6ea70040cc6 (patch) | |
tree | e1ad8651aa7663850f6dc1108b278f56a2b92a91 /extras/conf | |
parent | a1e2573369c6714956af561523ba274aa9c185f7 (diff) | |
download | meta-ti-88867c1d96684925027a0ecc9e25c6ea70040cc6.tar.gz |
extras: move things to extrassplit
Move non-essential, outdated, best-effort pieces, as well, as those requiring
extra non-standard dependencies besides oe-core.
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'extras/conf')
-rw-r--r-- | extras/conf/machine/am3517-evm.conf | 51 | ||||
-rw-r--r-- | extras/conf/machine/am387x-evm.conf | 5 | ||||
-rw-r--r-- | extras/conf/machine/am389x-evm.conf | 5 | ||||
-rw-r--r-- | extras/conf/machine/c6a814x-evm.conf | 5 | ||||
-rw-r--r-- | extras/conf/machine/c6a816x-evm.conf | 5 | ||||
-rw-r--r-- | extras/conf/machine/dm814x-evm.conf | 5 | ||||
-rw-r--r-- | extras/conf/machine/hawkboard.conf | 29 | ||||
-rw-r--r-- | extras/conf/machine/include/davinci.inc | 24 | ||||
-rw-r--r-- | extras/conf/machine/include/ti814x.inc | 26 | ||||
-rw-r--r-- | extras/conf/machine/include/ti816x.inc | 26 | ||||
-rw-r--r-- | extras/conf/machine/omap3-touchbook.conf | 49 |
11 files changed, 230 insertions, 0 deletions
diff --git a/extras/conf/machine/am3517-evm.conf b/extras/conf/machine/am3517-evm.conf new file mode 100644 index 00000000..b3efa9ab --- /dev/null +++ b/extras/conf/machine/am3517-evm.conf | |||
@@ -0,0 +1,51 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: AM3517 EVM | ||
3 | #@DESCRIPTION: Machine configuration for the TI Sitara AM3517 EVM | ||
4 | |||
5 | PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg" | ||
6 | XSERVER = "xserver-xorg \ | ||
7 | xf86-input-evdev \ | ||
8 | xf86-input-mouse \ | ||
9 | xf86-input-tslib \ | ||
10 | xf86-video-omapfb \ | ||
11 | xf86-input-keyboard" | ||
12 | |||
13 | GUI_MACHINE_CLASS = "smallscreen" | ||
14 | |||
15 | require conf/machine/include/omap3.inc | ||
16 | |||
17 | # Ship all kernel modules | ||
18 | |||
19 | IMAGE_FSTYPES += "ubi tar.bz2" | ||
20 | EXTRA_IMAGECMD_jffs2 = "-lnp -e 0x20000 -s 2048" | ||
21 | |||
22 | SERIAL_CONSOLE = "115200 ttyS2" | ||
23 | USE_VT = "2" | ||
24 | |||
25 | PREFERRED_PROVIDER_virtual/kernel = "linux-omap-psp" | ||
26 | |||
27 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot" | ||
28 | |||
29 | UBOOT_ARCH = "arm" | ||
30 | UBOOT_MACHINE = "am3517_evm_config" | ||
31 | XLOAD_MACHINE = "am3517evm_config" | ||
32 | |||
33 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 screen touchscreen ethernet" | ||
34 | |||
35 | # NOTE: there are NAND and OneNAND versions of this board... | ||
36 | |||
37 | # do ubiattach /dev/ubi_ctrl -m 4 | ||
38 | # From dmesg: | ||
39 | # UBI: smallest flash I/O unit: 2048 | ||
40 | # UBI: logical eraseblock size: 129024 bytes | ||
41 | # from ubiattach stdout: | ||
42 | # UBI device number 0, total 1996 LEBs | ||
43 | MKUBIFS_ARGS = "-m 2048 -e 129024 -c 1996" | ||
44 | |||
45 | # do ubiattach /dev/ubi_ctrl -m 4 | ||
46 | # from dmesg: | ||
47 | # UBI: smallest flash I/O unit: 2048 | ||
48 | # UBI: physical eraseblock size: 131072 bytes (128 KiB) | ||
49 | # UBI: sub-page size: 512 | ||
50 | UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512" | ||
51 | |||
diff --git a/extras/conf/machine/am387x-evm.conf b/extras/conf/machine/am387x-evm.conf new file mode 100644 index 00000000..ebf98890 --- /dev/null +++ b/extras/conf/machine/am387x-evm.conf | |||
@@ -0,0 +1,5 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: AM389x evm | ||
3 | #@DESCRIPTION: Machine configuration for the AM389x evm | ||
4 | |||
5 | require conf/machine/include/ti814x.inc | ||
diff --git a/extras/conf/machine/am389x-evm.conf b/extras/conf/machine/am389x-evm.conf new file mode 100644 index 00000000..9bfe7a75 --- /dev/null +++ b/extras/conf/machine/am389x-evm.conf | |||
@@ -0,0 +1,5 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: am389x evm | ||
3 | #@DESCRIPTION: Machine configuration for the am389x evm | ||
4 | |||
5 | require conf/machine/include/ti816x.inc | ||
diff --git a/extras/conf/machine/c6a814x-evm.conf b/extras/conf/machine/c6a814x-evm.conf new file mode 100644 index 00000000..b85c4894 --- /dev/null +++ b/extras/conf/machine/c6a814x-evm.conf | |||
@@ -0,0 +1,5 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: c6a814x evm | ||
3 | #@DESCRIPTION: Machine configuration for the c6a814x evm | ||
4 | |||
5 | require conf/machine/include/ti814x.inc | ||
diff --git a/extras/conf/machine/c6a816x-evm.conf b/extras/conf/machine/c6a816x-evm.conf new file mode 100644 index 00000000..a7ab9b08 --- /dev/null +++ b/extras/conf/machine/c6a816x-evm.conf | |||
@@ -0,0 +1,5 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: c6a816x evm | ||
3 | #@DESCRIPTION: Machine configuration for the c6a816x evm | ||
4 | |||
5 | require conf/machine/include/ti816x.inc | ||
diff --git a/extras/conf/machine/dm814x-evm.conf b/extras/conf/machine/dm814x-evm.conf new file mode 100644 index 00000000..140dcc10 --- /dev/null +++ b/extras/conf/machine/dm814x-evm.conf | |||
@@ -0,0 +1,5 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: DM814x evm | ||
3 | #@DESCRIPTION: Machine configuration for the DM814x evm | ||
4 | |||
5 | require conf/machine/include/ti814x.inc | ||
diff --git a/extras/conf/machine/hawkboard.conf b/extras/conf/machine/hawkboard.conf new file mode 100644 index 00000000..b6e7f2d0 --- /dev/null +++ b/extras/conf/machine/hawkboard.conf | |||
@@ -0,0 +1,29 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: OMAP-L138 based board | ||
3 | #@DESCRIPTION: Machine configuration for the TI Hawkboard | ||
4 | |||
5 | require conf/machine/include/davinci.inc | ||
6 | require conf/machine/include/omapl138.inc | ||
7 | |||
8 | UBOOT_MACHINE = "da850_omapl138_evm_config" | ||
9 | UBOOT_ENTRYPOINT = "0xc0008000" | ||
10 | UBOOT_LOADADDRESS = "0xc0008000" | ||
11 | |||
12 | MACHINE_FEATURES = "kernel26 serial ethernet ide screen" | ||
13 | |||
14 | # do ubiattach /dev/ubi_ctrl -m 4 | ||
15 | # From dmesg: | ||
16 | # UBI: smallest flash I/O unit: 2048 | ||
17 | # UBI: logical eraseblock size: 126976 bytes | ||
18 | # from ubiattach stdout: | ||
19 | # UBI device number 0, total 971 LEBs (123293696 bytes, 117.6 MiB), available 958 LEBs (121643008 bytes, 116.0 MiB), LEB size 126976 bytes (124.0 KiB) | ||
20 | MKUBIFS_ARGS = "-m 2048 -e 126976 -c 948" | ||
21 | |||
22 | # do ubiattach /dev/ubi_ctrl -m 4 | ||
23 | # from dmesg: | ||
24 | # UBI: smallest flash I/O unit: 2048 | ||
25 | # UBI: physical eraseblock size: 131072 bytes (128 KiB) | ||
26 | # UBI: sub-page size: 512 | ||
27 | UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512" | ||
28 | |||
29 | SERIAL_CONSOLE = "115200 ttyS2" | ||
diff --git a/extras/conf/machine/include/davinci.inc b/extras/conf/machine/include/davinci.inc new file mode 100644 index 00000000..80198449 --- /dev/null +++ b/extras/conf/machine/include/davinci.inc | |||
@@ -0,0 +1,24 @@ | |||
1 | require conf/machine/include/tune-arm926ejs.inc | ||
2 | |||
3 | # Increase this everytime you change something in the kernel | ||
4 | MACHINE_KERNEL_PR = "r51" | ||
5 | |||
6 | |||
7 | KERNEL_IMAGETYPE = "uImage" | ||
8 | |||
9 | PREFERRED_PROVIDER_virtual/kernel = "linux-davinci" | ||
10 | |||
11 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot" | ||
12 | UBOOT_MACHINE = "davinci_dvevm_config" | ||
13 | |||
14 | UBOOT_ENTRYPOINT = "0x80008000" | ||
15 | UBOOT_LOADADDRESS = "0x80008000" | ||
16 | |||
17 | EXTRA_IMAGEDEPENDS += "u-boot" | ||
18 | |||
19 | SERIAL_CONSOLE ?= "115200 ttyS0" | ||
20 | EXTRA_IMAGECMD_jffs2 = "--pad --little-endian --eraseblock=0x20000 -n" | ||
21 | |||
22 | #ROOT_FLASH_SIZE = "29" | ||
23 | |||
24 | MACHINE_FEATURES = "kernel26 serial ethernet usbhost usbgadget mmc alsa" | ||
diff --git a/extras/conf/machine/include/ti814x.inc b/extras/conf/machine/include/ti814x.inc new file mode 100644 index 00000000..475a2127 --- /dev/null +++ b/extras/conf/machine/include/ti814x.inc | |||
@@ -0,0 +1,26 @@ | |||
1 | SOC_FAMILY = "ti814x" | ||
2 | require conf/machine/include/soc-family.inc | ||
3 | |||
4 | require conf/machine/include/tune-cortexa8.inc | ||
5 | |||
6 | PREFERRED_PROVIDER_virtual/kernel = "linux-ti81xx-psp" | ||
7 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot" | ||
8 | |||
9 | # Increase this everytime you change something in the kernel | ||
10 | MACHINE_KERNEL_PR = "r2" | ||
11 | |||
12 | KERNEL_IMAGETYPE = "uImage" | ||
13 | |||
14 | UBOOT_ARCH = "arm" | ||
15 | UBOOT_MACHINE = "ti8148_evm_config_nand" | ||
16 | UBOOT_ENTRYPOINT = "0x80008000" | ||
17 | UBOOT_LOADADDRESS = "0x80008000" | ||
18 | |||
19 | # Only build u-boot | ||
20 | EXTRA_IMAGEDEPENDS += "u-boot" | ||
21 | |||
22 | # Ship all kernel modules | ||
23 | IMAGE_FSTYPES += "jffs2 tar.bz2" | ||
24 | EXTRA_IMAGECMD_jffs2 = "-lqn -e 128" | ||
25 | SERIAL_CONSOLE = "115200 ttyO0" | ||
26 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 ethernet" | ||
diff --git a/extras/conf/machine/include/ti816x.inc b/extras/conf/machine/include/ti816x.inc new file mode 100644 index 00000000..2fe40067 --- /dev/null +++ b/extras/conf/machine/include/ti816x.inc | |||
@@ -0,0 +1,26 @@ | |||
1 | SOC_FAMILY = "ti816x" | ||
2 | require conf/machine/include/soc-family.inc | ||
3 | |||
4 | require conf/machine/include/tune-cortexa8.inc | ||
5 | |||
6 | PREFERRED_PROVIDER_virtual/kernel = "linux-ti81xx-psp" | ||
7 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot" | ||
8 | |||
9 | # Increase this everytime you change something in the kernel | ||
10 | MACHINE_KERNEL_PR = "r2" | ||
11 | |||
12 | KERNEL_IMAGETYPE = "uImage" | ||
13 | |||
14 | UBOOT_ARCH = "arm" | ||
15 | UBOOT_MACHINE = "ti8168_evm_config" | ||
16 | UBOOT_ENTRYPOINT = "0x80008000" | ||
17 | UBOOT_LOADADDRESS = "0x80008000" | ||
18 | |||
19 | # Only build u-boot | ||
20 | EXTRA_IMAGEDEPENDS += "u-boot" | ||
21 | |||
22 | # Ship all kernel modules | ||
23 | IMAGE_FSTYPES += "jffs2 tar.bz2" | ||
24 | EXTRA_IMAGECMD_jffs2 = "-lqn -e 128" | ||
25 | SERIAL_CONSOLE = "115200 ttyO2" | ||
26 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 ethernet" | ||
diff --git a/extras/conf/machine/omap3-touchbook.conf b/extras/conf/machine/omap3-touchbook.conf new file mode 100644 index 00000000..95d93ac0 --- /dev/null +++ b/extras/conf/machine/omap3-touchbook.conf | |||
@@ -0,0 +1,49 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: Always Innovating touchbook | ||
3 | #@DESCRIPTION: Machine configuration for the http://www.alwaysinnovating.com/touchbook/ | ||
4 | TARGET_ARCH = "arm" | ||
5 | |||
6 | PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg" | ||
7 | XSERVER = "xserver-xorg \ | ||
8 | xf86-input-evdev \ | ||
9 | xf86-input-mouse \ | ||
10 | xf86-input-tslib \ | ||
11 | xf86-video-fbdev \ | ||
12 | xf86-video-omapfb \ | ||
13 | xf86-input-keyboard" | ||
14 | |||
15 | # Only has DVI connector for external screen | ||
16 | GUI_MACHINE_CLASS = "bigscreen" | ||
17 | |||
18 | require conf/machine/include/omap3.inc | ||
19 | |||
20 | PREFERRED_PROVIDER_virtual/kernel = "linux-omap-psp" | ||
21 | |||
22 | IMAGE_FSTYPES += "tar.bz2" | ||
23 | EXTRA_IMAGECMD_jffs2 = "-lnp " | ||
24 | |||
25 | # Guesswork | ||
26 | SERIAL_CONSOLE = "115200 ttyS2" | ||
27 | |||
28 | UBOOT_MACHINE = "omap3_beagle_config" | ||
29 | XLOAD_MACHINE = "beagleboard_config" | ||
30 | |||
31 | # do ubiattach /dev/ubi_ctrl -m 4 | ||
32 | # From dmesg: | ||
33 | # UBI: smallest flash I/O unit: 2048 | ||
34 | # UBI: logical eraseblock size: 129024 bytes | ||
35 | # from ubiattach stdout: | ||
36 | # UBI device number 0, total 1996 LEBs | ||
37 | MKUBIFS_ARGS = "-m 2048 -e 129024 -c 1996" | ||
38 | |||
39 | # do ubiattach /dev/ubi_ctrl -m 4 | ||
40 | # from dmesg: | ||
41 | # UBI: smallest flash I/O unit: 2048 | ||
42 | # UBI: physical eraseblock size: 131072 bytes (128 KiB) | ||
43 | # UBI: sub-page size: 512 | ||
44 | UBINIZE_ARGS = "-m 2048 -p 128KiB -s 512" | ||
45 | |||
46 | |||
47 | |||
48 | # and sdio | ||
49 | MACHINE_FEATURES = "kernel26 screen apm usbgadget usbhost vfat alsa touchscreen" | ||