Skip to content
Snippets Groups Projects
Commit 76049e02 authored by Pete Tucker's avatar Pete Tucker
Browse files

load hard or soft floating point pre-built binaries, as appropriate for build

parent 5d80e34f
No related branches found
No related tags found
No related merge requests found
......@@ -12,16 +12,31 @@ RDEPENDS_${PN} = "dbus-lib libnl libnl-genl bluez5"
#Qualcomm 6234 board data file
SRCBRANCH ?= "master"
SRCREV = "f33c245ba20cb6b97448ca9ea11039abb53e1255"
SRCREV = "450e67457e97b338840a38148d060249d0b1b841"
SRC_URI = "git://git.rigado.com/vesta/vesta-firmware.git;protocol=https;branch=${SRCBRANCH};destsuffix=${S}/git; \
"
S = "${WORKDIR}"
INSANE_SKIP_${PN} = "ldflags"
do_configure() {
if [ ${DEFAULTTUNE_mx6ul} = "cortexa7thf-neon" ]; then
cp git/firmware/ath6k/AR6004/hw3.0/abtfilt-hf git/firmware/ath6k/AR6004/hw3.0/abtfilt
cp git/firmware/ec21/quectel-CM-hf git/firmware/ec21/quectel-CM
else
cp git/firmware/ath6k/AR6004/hw3.0/abtfilt-sf git/firmware/ath6k/AR6004/hw3.0/abtfilt
cp git/firmware/ec21/quectel-CM-sf git/firmware/ec21/quectel-CM
fi
}
INSANE_SKIP_${PN} = "ldflags \
already-stripped \
"
do_install() {
install -d ${D}${sbindir}
install -m 555 git/firmware/ath6k/AR6004/hw3.0/abtfilt ${D}${sbindir}
install -m 555 git/firmware/ec21/quectel-CM ${D}${sbindir}
install -d ${D}${base_libdir}/firmware/ath6k/AR6004/hw3.0
install -m 444 git/firmware/ath6k/LICENSE.qca_firmware ${D}${base_libdir}/firmware
......
......@@ -4,8 +4,8 @@ SUMMARY = "Rigado's general purpose tool"
DESCRIPTION = "A tool for the gateway which changes functionality based on how it is linked"
# The latest commit
SRCREV = "53d334dbe34a8cd7f751e1d3dacbb2aa71015411"
SRCBRANCH ?= "v2.4.0-hf"
SRCREV = "6ea0d8d4582a77bdb7759b9ee982fa4bd96d857c"
SRCBRANCH ?= "v2.4.0"
require recipes-core/rigtools/rigtools.inc
......@@ -7,6 +7,17 @@ DEPENDS = "curl"
SRC_URI = "git://git.rigado.com/vesta/rigtools.git;protocol=https;branch=${SRCBRANCH}"
S = "${WORKDIR}/git"
do_configure() {
if [ ${DEFAULTTUNE_mx6ul} = "cortexa7thf-neon" ]; then
cp ${S}/rigtools-hf ${S}/rigtools
else
cp ${S}/rigtools-sf ${S}/rigtools
fi
}
do_install() {
install -d ${D}/etc
install -m 755 ${S}/dgua.conf ${D}/etc/dgua.conf
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment