Compare commits
2 Commits
2123205ca0
...
3ba76a4e8d
| Author | SHA1 | Date | |
|---|---|---|---|
| 3ba76a4e8d | |||
| 4f1f145a10 |
@@ -1,5 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# Build and deploy OpenWRT images using shell-style device profiles, via source code or the official Image Builder.# Copyright 2022-25 Bryan C. Roessler
|
# Build and deploy OpenWRT images using shell-style device profiles, via source code or the official Image Builder.
|
||||||
|
# Copyright 2022-25 Bryan C. Roessler
|
||||||
# Apache 2.0 License
|
# Apache 2.0 License
|
||||||
# See README and profiles for device configuration
|
# See README and profiles for device configuration
|
||||||
|
|
||||||
@@ -842,5 +843,9 @@ main() {
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Roughly turn debugging on for pre-init
|
||||||
|
# Reset and reparse in parse_input() with getopt
|
||||||
|
[[ " $* " =~ ( --debug | -d ) ]] && DEBUG=1
|
||||||
|
|
||||||
main "$@"
|
main "$@"
|
||||||
exit
|
exit
|
||||||
|
|||||||
5
profiles
5
profiles
@@ -1,12 +1,13 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=SC2034
|
|
||||||
# Device profiles for openwrtbuilder
|
# Device profiles for openwrtbuilder
|
||||||
|
# shellcheck disable=SC2034
|
||||||
|
|
||||||
# Default packages
|
# Default (but optional) packages
|
||||||
default_packages=(nano htop diffutils tar iperf3 zsh rsync
|
default_packages=(nano htop diffutils tar iperf3 zsh rsync
|
||||||
openssh-sftp-server luci luci-ssl luci-proto-wireguard luci-app-statistics
|
openssh-sftp-server luci luci-ssl luci-proto-wireguard luci-app-statistics
|
||||||
collectd-mod-sensors collectd-mod-thermal collectd-mod-conntrack collectd-mod-cpu)
|
collectd-mod-sensors collectd-mod-thermal collectd-mod-conntrack collectd-mod-cpu)
|
||||||
|
|
||||||
|
# Default (but optional) kernel configs
|
||||||
default_configs=("CONFIG_ALL_KMODS=n" "CONFIG_BUILDBOT=n")
|
default_configs=("CONFIG_ALL_KMODS=n" "CONFIG_BUILDBOT=n")
|
||||||
|
|
||||||
# Current devices
|
# Current devices
|
||||||
|
|||||||
Reference in New Issue
Block a user