test-runner: add special radius_server key

Some test cases require (at least with recent hostapd versions) a
stand alone radius server. This is done using driver=none in the
hostapd config file. For this use case hostapd does not need any
radio since its not doing anything wireless related.

Now inside the hw.conf file, under the HOSTAPD group, you can
specify a config file as the value to 'radius_server' key. This
config file will be used without any associated radio when hostapd
is started.
This commit is contained in:
James Prestwood 2019-12-30 10:09:51 -08:00 committed by Denis Kenzior
parent 8b937f4705
commit c93a4d71d6
1 changed files with 3 additions and 0 deletions

View File

@ -1398,6 +1398,9 @@ static bool configure_hostapd_instances(struct l_settings *hw_settings,
goto done;
}
if (!strcmp(hostap_keys[i], "radius_server"))
continue;
for (wiphy_entry = l_queue_get_entries(wiphy_list);
wiphy_entry;
wiphy_entry = wiphy_entry->next,