blob: 83392fde36e429973045cda1dacafcc6774959c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
################################################################################
#
# powervr
#
################################################################################
POWERVR_SOURCE =
ifeq ($(BR2_PACKAGE_TI_GFX),y)
POWERVR_DEPENDENCIES += ti-gfx
endif
ifeq ($(POWERVR_DEPENDENCIES),)
define POWERVR_CONFIGURE_CMDS
echo "No PowerVR implementation selected. Configuration error."
exit 1
endef
endif
$(eval $(generic-package))
|