summaryrefslogtreecommitdiff
path: root/package/brcm-bluetooth/Makefile
blob: 8f6a9d41ea5f786ec0e3865f8691f8d4100d5bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

include ${ADK_TOPDIR}/rules.mk

PKG_NAME:=		brcm-bluetooth
PKG_VERSION:=		1.0
PKG_RELEASE:=		3
PKG_DESCR:=		firmware for broadcom bluetooth chips
PKG_SECTION:=		sys/firmware
PKG_DEPENDS:=		bluez

NO_DISTFILES:=		1

include ${ADK_TOPDIR}/mk/package.mk

$(eval $(call PKG_template,BRCM_BLUETOOTH,brcm-bluetooth,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))

CONFIG_STYLE:=          manual
BUILD_STYLE:=           manual
INSTALL_STYLE:=         manual

do-build:
	${TARGET_CC} ${TARGET_CPPFLAGS} ${TARGET_CFLAGS} ${TARGET_LDFLAGS} \
		-o ${WRKBUILD}/brcm_patchram ${WRKBUILD}/brcm_patchram.c

do-install:
	${INSTALL_DIR} ${IDIR_BRCM_BLUETOOTH}/etc/init.d
	$(INSTALL_BIN) ./files/hci $(IDIR_BRCM_BLUETOOTH)/etc/init.d/
	${INSTALL_DIR} ${IDIR_BRCM_BLUETOOTH}/lib/firmware/brcm
ifeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI3),y)
	${CP} ${WRKBUILD}/BCM43430A1.hcd ${IDIR_BRCM_BLUETOOTH}/lib/firmware
else
	${CP} ${WRKBUILD}/*.hcd ${IDIR_BRCM_BLUETOOTH}/lib/firmware/brcm
	${INSTALL_DIR} ${IDIR_BRCM_BLUETOOTH}/sbin
	${INSTALL_BIN} ${WRKBUILD}/brcm_patchram \
		${IDIR_BRCM_BLUETOOTH}/sbin/brcm_patchram
endif

include ${ADK_TOPDIR}/mk/pkg-bottom.mk