Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(bluetooth): implement bluetooth support in initrd #1139

Merged
merged 1 commit into from
Apr 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dracut.spec
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ echo 'dracut_rescue_image="yes"' > $RPM_BUILD_ROOT%{dracutlibdir}/dracut.conf.d/
%{dracutlibdir}/modules.d/45url-lib
%{dracutlibdir}/modules.d/50drm
%{dracutlibdir}/modules.d/50plymouth
%{dracutlibdir}/modules.d/62bluetooth
%{dracutlibdir}/modules.d/80lvmmerge
%{dracutlibdir}/modules.d/90btrfs
%{dracutlibdir}/modules.d/90crypt
Expand Down
74 changes: 74 additions & 0 deletions modules.d/62bluetooth/module-setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
#!/bin/sh
# This file is part of dracut.
# SPDX-License-Identifier: GPL-2.0-or-later

# Prerequisite check(s) for module.
check() {
# If the binary(s) requirements are not fulfilled the module can't be installed
require_any_binary /usr/lib/bluetooth/bluetoothd /usr/libexec/bluetooth/bluetoothd || return 1
# Include by default if a Peripheral (0x500) is found of minor class:
# * Keyboard (0x40)
# * Keyboard/pointing (0xC0)
grep -qiE 'Class=0x[0-9a-f]{3}5[4c]0' /var/lib/bluetooth/*/*/info 2> /dev/null && return 0

return 255
}

bgmilne marked this conversation as resolved.
Show resolved Hide resolved
# Module dependency requirements.
depends() {
# This module has external dependencies on the systemd and dbus modules.
echo systemd dbus
# Return 0 to include the dependent modules in the initramfs.
return 0
}

installkernel() {
instmods bluetooth btrtl btintel btbcm bnep ath3k btusb rfcomm hidp
inst_multiple -o \
/usr/lib/firmware/ar3k/AthrBT* \
/usr/lib/firmware/ar3k/ramps* \
/usr/lib/firmware/ath3k-1.fw \
/usr/lib/firmware/BCM2033-MD.hex \
/usr/lib/firmware/bfubase.frm \
/usr/lib/firmware/BT3CPCC.bin \
/usr/lib/firmware/brcm/*.hcd \
/usr/lib/firmware/mediatek/mt7622pr2h.bin \
/usr/lib/firmware/qca/nvm* \
/usr/lib/firmware/qca/crnv* \
/usr/lib/firmware/qca/rampatch* \
/usr/lib/firmware/qca/crbtfw* \
/usr/lib/firmware/rtl_bt/* \
/usr/lib/firmware/intel/ibt* \
/usr/lib/firmware/ti-connectivity/TIInit_* \
/usr/lib/firmware/nokia/bcmfw.bin \
/usr/lib/firmware/nokia/ti1273.bin

}

bgmilne marked this conversation as resolved.
Show resolved Hide resolved
# Install the required file(s) for the module in the initramfs.
install() {
inst_multiple \
$(find /usr/libexec/bluetooth/bluetoothd /usr/lib/bluetooth/bluetoothd 2> /dev/null || :) \
"${systemdsystemunitdir}/bluetooth.target" \
"${systemdsystemunitdir}/bluetooth.service" \
bluetoothctl

if [[ $hostonly ]]; then
inst_multiple \
/etc/bluetooth/main.conf \
/etc/dbus-1/system.d/bluetooth.conf
fi

inst_multiple $(find /var/lib/bluetooth)

inst_rules 69-btattach-bcm.rules 60-persistent-input.rules

sed -i -e \
'/^\[Unit\]/aDefaultDependencies=no\
Conflicts=shutdown.target\
Before=shutdown.target\
After=dbus.service' \
"${initdir}/${systemdsystemunitdir}/bluetooth.service"

$SYSTEMCTL -q --root "$initdir" enable bluetooth.service
}