Rivoreo Source Code Repositories
src.rivoreo.one
/
systemd-stable
/
v243-stable
/
.
/
src
/
basic
/
arphrd-to-name.awk
blob: 5a35673e2c977bc97fdad28c0d656fb0aefc56bd [
file
] [
log
] [
blame
] [
raw
]
BEGIN
{
print
"static const char* const arphrd_names[] = { "
}
!
/CISCO/
{
printf
" [ARPHRD_%s] = \"%s\",\n"
,
$1
,
$1
}
END
{
print
"};"
}