-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bluetooth): implement bluetooth support in initrd
- Included a bluetooth module that installs modules, firmware, udev rules and bluetoothd. - systemd and dbus are required by bluetoothd - Include bluetooth by default if BT keyboard or combo found
- Loading branch information
Showing
2 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
|
||
# 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 | ||
|
||
} | ||
|
||
# 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 | ||
} |