#!/bin/sh

# fw ext setup

# set knxng-remote
if [ -e "../knxng-remote" ]; then

  # add only knxng-remote specific values
  EXTBOOTFILE="$EXTBOOTFILE;../knxng.ini"
  EXTLAZYBOOTFILE="$EXTLAZYBOOTFILE;../knxng.ini"
  EXTPRS="$EXTPRS;../knxng-remote.prs"

  export EXTBOOTFILE
  export EXTLAZYBOOTFILE
  export EXTPRS
  export FWBOOTCP
  
else
  echo "The file ../knxng-remote doesn't exist!"
fi
