-
Clone wireless-regdb:
git clone https://git.kernel.org/pub/scm/linux/kernel/git/wens/wireless-regdb.git && cd wireless-regdb
Open db.txt
in a text editor:
$EDITOR db.txt
Find country SG: DFS-FCC
Make your changes and don't forget to update the relevant comments above the SG block with appropriate reference to the TS SRD
Exit $EDITOR
Double-check your changes:
git diff HEAD~1
Build test:
make clean && make
Add the changed file:
git add db.txt
Commit:
git commit -s
Double-check your commit message:
git log -n1
Generate a patch from your commit:
git format-patch HEAD~1
Send patch to mailing list (dry run):
git send-email --dry-run --to=linux-wireless@vger.kernel.org --cc=wireless-regdb@lists.infradead.org *.patch
Verify that only one patch is in the first line of output and it is the intended patch to send, otherwise replace *.patch
with the specific one you wanted to send
Verify the Subject: line
Verify the From:, To:, CC: lines
When you are happy, run the same command as above, removing the --dry-run
argument
-