]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/arphrd-to-name.awk
Merge pull request #8575 from keszybz/non-absolute-paths
[thirdparty/systemd.git] / src / basic / arphrd-to-name.awk
CommitLineData
b884196c
ZJS
1BEGIN{
2 print "static const char* const arphrd_names[] = { "
3}
5c23128d 4!/CISCO/ {
b884196c
ZJS
5 printf " [ARPHRD_%s] = \"%s\",\n", $1, $1
6}
7END{
8 print "};"
5c23128d 9}