##// END OF EJS Templates
a
a

Fichier de la dernière révision:

r449:946eb9ed27e3
r449:946eb9ed27e3
Show More
44-nexmon_monitor_patch.sh
77 lines | 2.6 KiB | application/x-sh | BashLexer
/ bootstrap.d / 44-nexmon_monitor_patch.sh
Unknown
Nexmon
r444 #
Unknown
a
r449 # Build and Setup nexmon with monitor mode patch
Unknown
Nexmon
r444 #
# Load utility functions
. ./functions.sh
Unknown
a
r446 if [ "$ENABLE_NEXMON" = true ] && [ "$ENABLE_WIRELESS" = true ]; then
Unknown
a
r445
# Create temporary directory for nexmon sources
temp_dir=$(as_nobody mktemp -d)
# Fetch nexmon sources
as_nobody git -C "${temp_dir}" clone "${NEXMON_URL}"
# Copy downloaded nexmon sources
mv "${temp_dir}/nexmon" "${R}"/tmp/
# Set permissions of the nexmon sources
chown -R root:root "${R}"/tmp/nexmon
Unknown
a
r446
# Set script Root
NEXMON_ROOT="${R}"/tmp/nexmon
Unknown
a
r445
# Remove temporary directory for nexmon sources
rm -fr "${temp_dir}"
Unknown
a
r446 # Build nexmon firmware outside the build system, if we can.
cd "${NEXMON_ROOT}"
# Disable statistics
touch DISABLE_STATISTICS
# Setup Enviroment: see https://github.com/NoobieDog/nexmon/blob/master/setup_env.sh
ARCH="${KERNEL_ARCH}"
SUBARCH="${KERNEL_ARCH}"
KERNEL="${KERNEL_IMAGE}"
CC="${NEXMON_ROOT}"/buildtools/gcc-arm-none-eabi-5_4-2016q2-linux-x86/bin/arm-none-eabi-
CCPLUGIN="${NEXMON_ROOT}"/buildtools/gcc-nexmon-plugin/nexmon.so
ZLIBFLATE="zlib-flate -compress"
Q=@
NEXMON_SETUP_ENV=1
# Make nexmon
make
# Make ancient isl build
cd buildtools/isl-0.10
CC=$CCgcc
./configure
make
Unknown
a
r445
Unknown
a
r446 # build patches
if [ "$RPI_MODEL" = 0 ] || [ "$RPI_MODEL" = 3 ] ; then
cd ${NEXMON_ROOT}/patches/bcm43430a1/7_45_41_46/nexmon
make clean
# We do this so we don't have to install the ancient isl version into /usr/local/lib on systems.
LD_LIBRARY_PATH=${NEXMON_ROOT}/buildtools/isl-0.10/.libs make ARCH="${KERNEL_ARCH}" CC=${NEXMON_ROOT}/buildtools/gcc-arm-none-eabi-5_4-2016q2-linux-x86/bin/arm-none-eabi-
# copy RPi0W & RPi3 firmware
cp ${NEXMON_ROOT}/patches/bcm43430a1/7_45_41_46/nexmon/brcmfmac43430-sdio.bin "${WLAN_FIRMWARE_DIR}"/brcmfmac43430-sdio.nexmon.bin
cp -f ${NEXMON_ROOT}/patches/bcm43430a1/7_45_41_46/nexmon/brcmfmac43430-sdio.bin "${WLAN_FIRMWARE_DIR}"/brcmfmac43430-sdio.bin
fi
if [ "$RPI_MODEL" = 3P ] ; then
cd ${NEXMON_ROOT}/patches/bcm43455c0/7_45_154/nexmon
make clean
# We do this so we don't have to install the ancient isl version into /usr/local/lib on systems.
LD_LIBRARY_PATH=${NEXMON_ROOT}/buildtools/isl-0.10/.libs make ARCH="${KERNEL_ARCH}" CC=${NEXMON_ROOT}/buildtools/gcc-arm-none-eabi-5_4-2016q2-linux-x86/bin/arm-none-eabi-
# RPi3B+ firmware
cp ${NEXMON_ROOT}/patches/bcm43455c0/7_45_154/nexmon/brcmfmac43455-sdio.bin "${WLAN_FIRMWARE_DIR}"/brcmfmac43455-sdio.nexmon.bin
cp -f ${NEXMON_ROOT}/patches/bcm43455c0/7_45_154/nexmon/brcmfmac43455-sdio.bin "${WLAN_FIRMWARE_DIR}"/brcmfmac43455-sdio.bin
fi
fi