mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-15 00:03:39 +08:00
sunxi-cedarx: add CedarX hardware video decoding library
[Thomas: rename package to sunxi-cedarx, improve help text description, install libraries with executable permissions to make sure they get stripped at the end of the build.] Signed-off-by: Spenser Gilliland <spenser@gillilanding.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
2f08cad9a3
commit
e748156012
@ -295,6 +295,7 @@ source "package/smartmontools/Config.in"
|
||||
source "package/snowball-hdmiservice/Config.in"
|
||||
source "package/sredird/Config.in"
|
||||
source "package/statserial/Config.in"
|
||||
source "package/sunxi-cedarx/Config.in"
|
||||
source "package/sunxi-mali/Config.in"
|
||||
source "package/sunxi-mali-prop/Config.in"
|
||||
source "package/sysstat/Config.in"
|
||||
|
14
package/sunxi-cedarx/Config.in
Normal file
14
package/sunxi-cedarx/Config.in
Normal file
@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_SUNXI_CEDARX
|
||||
bool "sunxi-cedarx"
|
||||
depends on BR2_TOOLCHAIN_USES_GLIBC && BR2_arm
|
||||
help
|
||||
Sunxi CedarX decoder libraries. CedarX is Allwinner's
|
||||
multimedia co-processing technology for hardware accelerated
|
||||
video and image decoding, as used inside their A10 SoC's and
|
||||
others.
|
||||
|
||||
http://github.com/linux-sunxi/cedarx-libs
|
||||
http://linux-sunxi.org/CedarX
|
||||
|
||||
comment "sunxi-cedarx requires an eglibc/glibc based toolchain"
|
||||
depends on !BR2_TOOLCHAIN_USES_GLIBC && BR2_arm
|
49
package/sunxi-cedarx/sunxi-cedarx.mk
Normal file
49
package/sunxi-cedarx/sunxi-cedarx.mk
Normal file
@ -0,0 +1,49 @@
|
||||
################################################################################
|
||||
#
|
||||
# sunxi-cedarx
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SUNXI_CEDARX_VERSION = 74923e55fc
|
||||
SUNXI_CEDARX_SITE = http://github.com/linux-sunxi/cedarx-libs/tarball/$(SUNXI_CEDARX_VERSION)
|
||||
|
||||
SUNXI_CEDARX_INSTALL_STAGING = YES
|
||||
|
||||
ifeq ($(BR2_ARM_EABIHF),y)
|
||||
SUNXI_CEDARX_BIN_DIR = $(@D)/libcedarv/linux-armhf
|
||||
else
|
||||
SUNXI_CEDARX_BIN_DIR = $(@D)/libcedarv/linux-armel
|
||||
endif
|
||||
|
||||
define SUNXI_CEDARX_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(SUNXI_CEDARX_BIN_DIR)
|
||||
$(TARGET_CC) $(TARGET_CFLAGS) \
|
||||
-c $(SUNXI_CEDARX_BIN_DIR)/adapter/avheap/avheap.c \
|
||||
-o $(SUNXI_CEDARX_BIN_DIR)/adapter/avheap/avheap.o \
|
||||
-I $(SUNXI_CEDARX_BIN_DIR)/adapter/avheap \
|
||||
-I $(SUNXI_CEDARX_BIN_DIR)/
|
||||
$(TARGET_CC) -shared -L./ -Wl,-soname,libavheap.so \
|
||||
-o $(SUNXI_CEDARX_BIN_DIR)/adapter/avheap/libavheap.so \
|
||||
$(SUNXI_CEDARX_BIN_DIR)/adapter/avheap/avheap.o
|
||||
endef
|
||||
|
||||
define SUNXI_CEDARX_INSTALL_STAGING_CMDS
|
||||
$(INSTALL) -d -m 755 $(STAGING_DIR)/usr/include/libvecore
|
||||
$(INSTALL) -m 664 $(SUNXI_CEDARX_BIN_DIR)/libvecore/*.h \
|
||||
$(STAGING_DIR)/usr/include/libvecore
|
||||
$(INSTALL) -m 644 $(SUNXI_CEDARX_BIN_DIR)/*.h \
|
||||
$(STAGING_DIR)/usr/include/
|
||||
$(INSTALL) -D -m 755 $(SUNXI_CEDARX_BIN_DIR)/libvecore/libvecore.so \
|
||||
$(STAGING_DIR)/usr/lib/libvecore.so
|
||||
$(INSTALL) -D -m 755 $(SUNXI_CEDARX_BIN_DIR)/adapter/avheap/libavheap.so \
|
||||
$(STAGING_DIR)/usr/lib/libavheap.so
|
||||
endef
|
||||
|
||||
define SUNXI_CEDARX_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 755 $(SUNXI_CEDARX_BIN_DIR)/libvecore/libvecore.so \
|
||||
$(TARGET_DIR)/usr/lib/libvecore.so
|
||||
$(INSTALL) -D -m 755 $(SUNXI_CEDARX_BIN_DIR)/adapter/avheap/libavheap.so \
|
||||
$(TARGET_DIR)/usr/lib/libavheap.so
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
Loading…
Reference in New Issue
Block a user