mirror of https://github.com/aredn/aredn.git
101 lines
3.1 KiB
Bash
Executable File
101 lines
3.1 KiB
Bash
Executable File
#!/bin/sh
|
|
<<'LICENSE'
|
|
Part of AREDN -- Used for creating Amateur Radio Emergency Data Networks
|
|
Copyright (C) 2015 Conrad Lara
|
|
See Contributors file for additional contributors
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation version 3 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Additional Terms:
|
|
|
|
Additional use restrictions exist on the AREDN(TM) trademark and logo.
|
|
See AREDNLicense.txt for more info.
|
|
|
|
Attributions to the AREDN Project must be retained in the source code.
|
|
If importing this code into a new or existing project attribution
|
|
to the AREDN project must be added to the source code.
|
|
|
|
You must not misrepresent the origin of the material conained within.
|
|
|
|
Modified versions must be modified to attribute to the original source
|
|
and be marked in reasonable ways as differentiate it from the original
|
|
version.
|
|
|
|
LICENSE
|
|
|
|
# For now lets just return static entries
|
|
|
|
# Kernel Config entries for packages that should be a part of the build
|
|
cat <<'EOF'
|
|
CONFIG_ALL=y
|
|
CONFIG_PACKAGE_bridge=y
|
|
CONFIG_PACKAGE_busybox=y
|
|
CONFIG_PACKAGE_dnsmasq=y
|
|
CONFIG_PACKAGE_dropbear=y
|
|
CONFIG_PACKAGE_iptables=y
|
|
CONFIG_PACKAGE_kmod-ipt-nathelper=y
|
|
CONFIG_PACKAGE_kmod-usb-core=y
|
|
CONFIG_PACKAGE_kmod-usb-uhci=y
|
|
CONFIG_PACKAGE_kmod-usb2=y
|
|
CONFIG_PACKAGE_libgcc=y
|
|
CONFIG_PACKAGE_mtd=y
|
|
CONFIG_PACKAGE_ppp=y
|
|
CONFIG_PACKAGE_ppp-mod-pppoe=y
|
|
CONFIG_PACKAGE_uhttpd=y
|
|
CONFIG_PACKAGE_olsrd=y
|
|
CONFIG_PACKAGE_perl=y
|
|
CONFIG_PACKAGE_olsrd-mod-arprefresh=y
|
|
CONFIG_PACKAGE_olsrd-mod-dyn-gw=y
|
|
CONFIG_PACKAGE_olsrd-mod-httpinfo=y
|
|
CONFIG_PACKAGE_olsrd-mod-nameservice=y
|
|
CONFIG_PACKAGE_olsrd-mod-txtinfo=y
|
|
CONFIG_PACKAGE_olsrd-mod-jsoninfo=y
|
|
CONFIG_PACKAGE_olsrd-mod-dot-draw=y
|
|
CONFIG_PACKAGE_olsrd-mod-watchdog=y
|
|
CONFIG_PACKAGE_olsrd-mod-secure=y
|
|
CONFIG_PACKAGE_perlbase-essential=y
|
|
CONFIG_PACKAGE_perlbase-xsloader=y
|
|
CONFIG_PACKAGE_perlbase-file=y
|
|
CONFIG_PACKAGE_perlbase-perlio=y
|
|
CONFIG_PACKAGE_libpcap=y
|
|
CONFIG_PACKAGE_tcpdump-mini=y
|
|
CONFIG_PACKAGE_ntpclient=y
|
|
CONFIG_PACKAGE_xinetd=y
|
|
CONFIG_PACKAGE_kmod-ipv6=y
|
|
CONFIG_PACKAGE_ip6tables=y
|
|
CONFIG_PACKAGE_kmod-ip6tables=y
|
|
CONFIG_PACKAGE_libip6tc=y
|
|
CONFIG_PACKAGE_ip=y
|
|
CONFIG_PACKAGE_iptables-mod-ipopt=y
|
|
CONFIG_PACKAGE_iwinfo=y
|
|
CONFIG_PACKAGE_libiwinfo=y
|
|
CONFIG_PACKAGE_socat=y
|
|
CONFIG_PACKAGE_ntpclient=y
|
|
CONFIG_PACKAGE_curl=y
|
|
CONFIG_PACKAGE_libnetsnmp=y
|
|
CONFIG_PACKAGE_snmpd=y
|
|
CONFIG_PACKAGE_lua=y
|
|
CONFIG_PACKAGE_liblua=y
|
|
CONFIG_PACKAGE_libuci-lua=y
|
|
CONFIG_PACKAGE_libubus-lua=y
|
|
CONFIG_PACKAGE_luci-base=y
|
|
CONFIG_PACKAGE_luci-lib-nixio=y
|
|
CONFIG_PACKAGE_luci-lib-ip=y
|
|
CONFIG_PACKAGE_luci-lib-jsonc=y
|
|
CONFIG_PACKAGE_libc=y
|
|
CONFIG_PACKAGE_libjson-c=y
|
|
CONFIG_PACKAGE_libnl_tiny=y
|
|
CONFIG_PACKAGE_libiwinfo-lua=y
|
|
CONFIG_PACKAGE_luaposix=y
|
|
EOF
|