blob: 1212d8f892da8ab3aad448a3b7dde1e27788d614 [file] [log] [blame]
#!/bin/sh
#
#
# Copyright (C) 2015 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
# UDEV event helper script that sets the system's WiFi regulatory domain
# from VPD data.
set -e
# TODO(quiche): When fixing crbug.com/474657, we may need to remove tr.
country_code="$(vpd_get_value region | tr a-z A-Z)"
# Reject country code with invalid characters.
if [ -n "$(echo "${country_code}" | LC_ALL=C sed 's/[A-Z0-9_\.-]//g')" ]; then
country_code=""
fi
# TODO(quiche): Replace this code using the regions database and jq.
# crbug.com/474657.
country_code="${country_code%%.*}"
case "${country_code}" in
"LATAM-ES-419")
country_code="MX"
;;
"NORDIC")
country_code="SE"
;;
esac
if [ -n "${country_code}" ]; then
iw reg set "${country_code}"
fi