- Aug 28, 2020
-
-
Matthias Schiffer authored
The rewrite of the feature handling introduced multiple major bugs. One of them was caused by the way Lua's logical operators work: An expression of the form _'autoupdater' and _'web-advanced' would return 'web-advanced' rather than the boolean true when _ returned both strings unchanged (because the features are enabled). As entries with more than a single feature name in their expressions did not set no_default, Gluon would then attempt to add gluon-web-advanced to the package selection, as web-advanced is a "pure" feature. To fix this, and get rid of the annoying nodefault, separate handling of "pure" feature and handling of logical expressions into two separate functions, called feature() and when(). To simplify the feature definitions, the package list is now passed directly to these functions rather than in a table with a single field 'packages'. Fixes: ee5ec5af ("build: rewrite features.sh in Lua")
-
- Jul 01, 2020
-
-
Matthias Schiffer authored
The `features` file is converted to a Lua-based DSL. A helper function `_` is used in the DSL; this will return the original string for enabled features, and nil for disabled features. This allows to use boolean operations on features without making the code too verbose. Besides having more readable and robust code, this also fixes the bug that all files `packages/*/features` were evaluated instead of only using the feature definitions of currently active feeds.
-
- Mar 25, 2020
-
-
David Bauer authored
If WPA3 is not selected as a feature, autmatically include hostapd-mini.
-
- Sep 25, 2019
-
-
Matthias Schiffer authored
-
- Aug 21, 2019
-
-
Matthias Schiffer authored
Fixes #1775
-
- Apr 28, 2019
-
-
Martin Weinelt authored
adds a section to the wizard for outdoor capable devices that informs the user of of the regulatory situation and allows a quick toggle of the outdoor mode.
-
- Sep 05, 2018
-
-
Tata authored
this activates the package by default when using the batman feature while still allowing to explicitly remove it like this: GLUON_SITE_PACKAGES := \ -gluon-ebtables-limit-arp
-
- Apr 15, 2018
-
-
Christof Schulze authored
batman-adv-specific parts are moved to a new package gluon-status-page-mesh-batman-adv.
-
- Mar 12, 2018
-
-
Matthias Schiffer authored
This package only provides the choice between "security" and "performance mode". It should only be enabled when specified in site.mk.
-
- Jul 09, 2017
-
-
Matthias Schiffer authored
To reduce the number of packages that need to be listed in GLUON_SITE_PACKAGES, this adds a new variable GLUON_FEATURES. Sets of packages are enabled automatically based on the combination of listed feature flags. Site-specified package feeds can provide their own feature flag definitions.
-