- Jan 20, 2023
-
-
Maciej Krüger authored
-
- Jan 15, 2023
-
-
Martin Weinelt authored
We migrate to dnsmasq-full, while disabling most of its features. Notably, dhcp and dnssec are compiled in, while other features of the full variant are deselected.
-
- Dec 09, 2022
-
-
Jan-Niklas Burfeind authored
targets without usb-support fail to build without this change Co-authored-by:
David Bauer <mail@david-bauer.net>
-
- Jul 07, 2022
-
-
David Bauer authored
The ip6tables-legacy metapackage was renamed to ip6ables-zz-legacy.
-
- May 07, 2022
-
-
Matthias Schiffer authored
Remove a few features that became enabled by default since OpenWrt 19.07. Disabling CONFIG_RELAY also reduces RAM usage.
-
- May 06, 2022
-
-
David Bauer authored
Remove kernel symbols which are not required for Gluon. Signed-off-by:
David Bauer <mail@david-bauer.net>
-
David Bauer authored
Gluon still uses firewall3 and iptables, so remove dependency on nftables.
-
- Apr 30, 2022
-
-
David Bauer authored
Jool can be built without error on 22.03. Remove this workaround.
-
David Bauer authored
-
David Bauer authored
-
- Oct 05, 2021
-
-
Matthias Schiffer authored
A helper script is introduced to get the version from `git describe`.
-
- Jun 25, 2021
-
-
David Bauer authored
These config changes are not necessary anymore, as it's now the default behavior. Ref: https://github.com/freifunk-gluon/gluon/pull/2235#issuecomment-859654947 Signed-off-by:
David Bauer <mail@david-bauer.net>
-
- Jun 21, 2021
-
-
David Bauer authored
All targets now use OpenWrt device abstraction. Thus, all targets now can be built using a per-device RootFS. Signed-off-by:
David Bauer <mail@david-bauer.net>
-
David Bauer authored
Signed-off-by:
David Bauer <mail@david-bauer.net>
-
David Bauer authored
-
- Aug 15, 2020
-
-
Matthias Schiffer authored
GLUON_AUTOUPDATER_BRANCH and GLUON_AUTOUPDATER_ENABLED should be set separately now.
-
Matthias Schiffer authored
The new options are CONFIG_GLUON_AUTOUPDATER_BRANCH and CONFIG_GLUON_AUTOUPDATER_ENABLED and allow to control the default branch and default enable status separately. The `or ''` fallback in targets/generic is removed, as GLUON_ENV will set all variables in GLUON_VARS, making previously non-existing variables exist with an empty value.
-
- Jun 12, 2020
-
-
Matthias Schiffer authored
Normally, we build all nonshared packages (which includes all kernel modules) to generate an opkg feed for later package installations by users. On targets without opkg, this just wastes time - disable it. (cherry picked from commit b3edfd29)
-
- Jun 11, 2020
-
-
Matthias Schiffer authored
Normally, we build all nonshared packages (which includes all kernel modules) to generate an opkg feed for later package installations by users. On targets without opkg, this just wastes time - disable it.
-
- Jun 04, 2020
-
-
Chrissi^ (Chris Fiege) authored
This change stores a Kernel with Debug-Symbols for the current architecture in a new output directory '<outputdir>/debug'. This allows a developer or operator of a network to store the kernel along with the actual images. In case of a kernel oops the debug information can be used with the script 'scripts/decode_stacktrace.sh' in the kernel source tree to get the names to the symbols of the stack trace. OpenWRT already provides the CONFIG_COLLECT_KERNEL_DEBUG -option that creates a kernel with debug-symbols in the OpenWRT output directory. This change enables this option and copies the generated kernel to the gluon output directory. Signed-off-by:
Chrissi^ <chris@tinyhost.de>
-
- May 31, 2020
-
-
Matthias Schiffer authored
target_config.lua and target_config_check.lua don't pass a table of callbacks anymore, so target_config_lib.lua can by simplified by moving all the code that was in the returned function to the toplevel.
-
Matthias Schiffer authored
So far, we were using a sort operation on the generated .config to implement precedence of =y packages over =m, and =m over unset. Unfortunately, this sort not only used for packages, but for all config lines. This made it impossible to override settings from targets/generic in a target config when the new setting was sorted before the generic setting. To fix this, track configurations by their keys, so we can properly override config keys that were set before. Value-based precedence is only preserved for package configuration. The config() and try_config() calls always take key and value as separate arguments now. Strings are quoted automatically; the values true, nil and false map to y, m and unset for tristate options. config() can take an optional third argument to override the error message to display when the setting fails to apply. All existing target configs generate the same .config with the old and the new code. The new code is also a bit faster on targets with many devices.
-
- May 28, 2020
-
-
Matthias Schiffer authored
In OpenWrt 19.07, the block size was increased to 1024KiB for "tiny" devices by default to save flash. Unfortunately, this also significantly increases the cache memory required by squashfs. In my test, the increased block size reduced the image size by ~64KiB, but increased the RAM usage by ~2.6MiB. As most tiny devices have only 32MiB of RAM, this is not a reasonable tradeoff. The ar71xx-generic target already defines an even lower block size of 64KiB.
-
Matthias Schiffer authored
This is unused by Gluon.
-
- May 13, 2020
-
-
Matthias Schiffer authored
-
- May 12, 2020
-
-
lemoer authored
-
- Mar 14, 2020
-
-
Matthias Schiffer authored
Signed-off-by:
Matthias Schiffer <mschiffer@universe-factory.net>
-
- Feb 04, 2020
-
-
Matthias Schiffer authored
Fixes: c3435607 ("generic: increase RootFS size when GLUON_DEBUG is enabled")
-
- Jan 05, 2020
-
-
David Bauer authored
This increases the size of the root filesystem when GLUON_DEBUG is enabled. Otherwise, the filesystem is too small. Closes #1907
-
- Oct 29, 2019
-
-
David Bauer authored
This is necessary, as wpad-basic conflicts with hostapd-mini.
-
- Jun 15, 2019
-
-
Matthias Schiffer authored
The old bash-based parsing code was way too complex. Replace it with Lua.
-
- Apr 19, 2019
-
-
Matthias Schiffer authored
By passing the package name through merge_packages, it becomes possible to override the package choice in GLUON_SITE_PACKAGES again, for example: GLUON_SITE_PACKAGES += -hostapd-mini hostapd
-
- Sep 30, 2018
-
-
Matthias Schiffer authored
kmod-jool build is broken with current kernel 4.14.y.
-
- Jul 11, 2018
-
-
Matthias Schiffer authored
modules.sh can't depend on openwrt/feeds.conf.default, otherwise the initial update will fail.
-
- Jul 10, 2018
-
-
Matthias Schiffer authored
-
- Apr 10, 2018
-
-
Matthias Schiffer authored
kmod-usbip is broken since the last kernel update.
-
- Jan 26, 2018
-
-
Matthias Schiffer authored
-
Matthias Schiffer authored
-
- Sep 07, 2017
-
-
Matthias Schiffer authored
As the default package list is now handled using the 'packages' directive, explicit wpad-mini removals in target definitions can be dropped.
-
- Sep 06, 2017
-
-
Matthias Schiffer authored
This, together with a new try_config directive, will allow checking the generic config and make it more flexible.
-