* Initial version Odroid N2 Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * fix some issue * optimize * cleanup kernel config * Fix HDMI output * Migrate to upstream u-boot * Use own HA image * Add kernel for odroid xu4 * Add N2 to release pipeline * Use uboot 2020.01 / fix version hardkernel * Fix image
32 lines
1.6 KiB
Makefile
32 lines
1.6 KiB
Makefile
################################################################################
|
|
#
|
|
# Bluetooth RTL8723
|
|
#
|
|
################################################################################
|
|
|
|
BLUETOOTH_RTL8723_VERSION = 1.0.0
|
|
BLUETOOTH_RTL8723_LICENSE = Apache License 2.0
|
|
BLUETOOTH_RTL8723_LICENSE_FILES = $(BR2_EXTERNAL_HASSOS_PATH)/../LICENSE
|
|
BLUETOOTH_RTL8723_SITE = $(BR2_EXTERNAL_HASSOS_PATH)/package/bluetooth-rtl8723
|
|
BLUETOOTH_RTL8723_SITE_METHOD = local
|
|
|
|
define BLUETOOTH_RTL8723_BUILD_CMDS
|
|
curl -L -o $(@D)/rtk_hciattach https://raw.githubusercontent.com/home-assistant/hassos-blobs/e0c8b7aebb626694cf5c017a9e03068aee2bc604/rtl_bt/rtk_hciattach
|
|
|
|
curl -L -o $(@D)/rtl8723b_config https://raw.githubusercontent.com/home-assistant/hassos-blobs/e0c8b7aebb626694cf5c017a9e03068aee2bc604/rtl_bt/rtl8723b_config.bin
|
|
curl -L -o $(@D)/rtl8723b_fw https://raw.githubusercontent.com/home-assistant/hassos-blobs/e0c8b7aebb626694cf5c017a9e03068aee2bc604/rtl_bt/rtl8723b_fw.bin
|
|
endef
|
|
|
|
define BLUETOOTH_RTL8723_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -d $(TARGET_DIR)/etc/systemd/system/hassos-hardware.target.wants
|
|
$(INSTALL) -m 0755 $(@D)/bluetooth-rtl8723 $(TARGET_DIR)/usr/sbin/
|
|
$(INSTALL) -m 0644 $(@D)/bluetooth-rtl8723.service $(TARGET_DIR)/usr/lib/systemd/system/
|
|
ln -fs /usr/lib/systemd/system/bluetooth-rtl8723.service $(TARGET_DIR)/etc/systemd/system/hassos-hardware.target.wants/
|
|
|
|
$(INSTALL) -d $(TARGET_DIR)/lib/firmware/rtlbt
|
|
$(INSTALL) -m 0644 $(@D)/rtl8723b_* $(TARGET_DIR)/lib/firmware/rtlbt/
|
|
$(INSTALL) -m 0755 $(@D)/rtk_hciattach $(TARGET_DIR)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(generic-package))
|