mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
20 lines
556 B
Bash
20 lines
556 B
Bash
#!/bin/sh /etc/rc.common
|
|
#
|
|
#
|
|
#Copyright (c) 2020 Qualcomm Technologies, Inc.
|
|
# All Rights Reserved.
|
|
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
|
#
|
|
|
|
START=15
|
|
|
|
boot() {
|
|
. /lib/functions.sh
|
|
art_partition=$(find_mtd_part 0:ART)
|
|
|
|
export BTHOST_BD_ADDR=0x$(hexdump -n 6 -s 64 $art_partition | cut -d " " -f2-4 | sed 's/ //g'| head -n 1)
|
|
echo "$BTHOST_BD_ADDR" > /tmp/BTHOST_BD_ADDR
|
|
export BTHOST_XCAL_TRIM=0x$(hexdump -n 7 -s 64 $art_partition | cut -d " " -f5 | head -n 1)
|
|
echo "$BTHOST_XCAL_TRIM" > /tmp/BTHOST_XCAL_TRIM
|
|
|
|
}
|