mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
See: https://github.com/raspberrypi/firmware/issues/860#issuecomment-324355290 Also, use sh instead of bash - one less unecessary bash dependency.
19 lines
649 B
Bash
Executable File
19 lines
649 B
Bash
Executable File
#!/bin/sh
|
|
|
|
HCIATTACH=/usr/bin/hciattach
|
|
SERIAL=$(awk '/^Serial/{ print $3 }' /proc/cpuinfo)
|
|
B1=${SERIAL:10:2}
|
|
B2=${SERIAL:12:2}
|
|
B3=${SERIAL:14:2}
|
|
BDADDR=$(printf b8:27:eb:%02x:%02x:%02x $((0x$B1 ^ 0xaa)) $((0x$B2 ^ 0xaa)) $((0x$B3 ^ 0xaa)))
|
|
|
|
if [ "$(cat /proc/device-tree/aliases/uart0)" = "$(cat /proc/device-tree/aliases/serial1)" ] ; then
|
|
if [ "$(wc -c /proc/device-tree/soc/gpio@7e200000/uart0_pins/brcm\,pins | cut -f 1 -d ' ')" = "16" ] ; then
|
|
$HCIATTACH /dev/serial1 bcm43xx 3000000 flow - $BDADDR
|
|
else
|
|
$HCIATTACH /dev/serial1 bcm43xx 921600 noflow - $BDADDR
|
|
fi
|
|
else
|
|
$HCIATTACH /dev/serial1 bcm43xx 460800 noflow - $BDADDR
|
|
fi
|