aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-graphics/libgles/libgles-omap3/cputype
blob: 27f411d0a68f228012e2284e4ba964510d2cf6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
. /etc/init.d/functions

if [ "$(machine_id)" = "ti8168evm" ] ; then
	echo TI816x
else
	devmem2 0x4800244c | \
	grep 'Read at address' | \
	sed -e 's/.*): //' | \
	sed -e 's/0x00005C00/OMAP3503/' -e 's/0x00001C00/OMAP3515/' -e 's/0x00004C00/OMAP3525/' -e 's/0x00000C00/OMAP3530/'
fi