mirror of
https://github.com/ipxe/ipxe
synced 2025-12-26 17:42:47 +03:00
[settings] Impose a fixed order on settings
Improve the appearance of the "config" user interface by ensuring that settings appear in some kind of logical order. Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -202,7 +202,7 @@ struct settings_applicator net80211_applicator __settings_applicator = {
|
||||
* If this is blank, we scan for all networks and use the one with the
|
||||
* greatest signal strength.
|
||||
*/
|
||||
struct setting net80211_ssid_setting __setting = {
|
||||
struct setting net80211_ssid_setting __setting ( SETTING_NETDEV_EXTRA ) = {
|
||||
.name = "ssid",
|
||||
.description = "802.11 SSID (network name)",
|
||||
.type = &setting_type_string,
|
||||
@@ -215,7 +215,7 @@ struct setting net80211_ssid_setting __setting = {
|
||||
* active scan (send probe packets). If this setting is nonzero, an
|
||||
* active scan on the 2.4GHz band will be used to associate.
|
||||
*/
|
||||
struct setting net80211_active_setting __setting = {
|
||||
struct setting net80211_active_setting __setting ( SETTING_NETDEV_EXTRA ) = {
|
||||
.name = "active-scan",
|
||||
.description = "Use an active scan during 802.11 association",
|
||||
.type = &setting_type_int8,
|
||||
@@ -228,7 +228,7 @@ struct setting net80211_active_setting __setting = {
|
||||
* normal iPXE method for entering hex settings; an ASCII string of
|
||||
* hex characters will not behave as expected.
|
||||
*/
|
||||
struct setting net80211_key_setting __setting = {
|
||||
struct setting net80211_key_setting __setting ( SETTING_NETDEV_EXTRA ) = {
|
||||
.name = "key",
|
||||
.description = "Encryption key for protected 802.11 networks",
|
||||
.type = &setting_type_string,
|
||||
|
||||
Reference in New Issue
Block a user