blob: df201fe1ed1e9c6be8e4c5414a728aa8604e1af0 (
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
|
# 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:= 1
PKG_MD5SUM:= 85a7d1d1386143fad312a5a82c422380
PKG_DESCR:= firmware for broadcom bluetooth chips
PKG_SECTION:= sys/firmware
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}/lib/firmware/brcm
${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
include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|