From 6f71e5dce1817676a47fc7b92f7d288e4094f614 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 11 Dec 2015 19:50:21 +0100 Subject: sys: add PF_NFC support --- sysgen/sysgen.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sysgen') diff --git a/sysgen/sysgen.go b/sysgen/sysgen.go index 0cd6ae61e..671e27c0b 100644 --- a/sysgen/sysgen.go +++ b/sysgen/sysgen.go @@ -355,6 +355,10 @@ func fmtFdKind(s string) string { return "FdAlg" case "algconn": return "FdAlgConn" + case "nfc_raw": + return "FdNfcRaw" + case "nfc_llcp": + return "FdNfcLlcp" default: failf("bad fd type %v", s) return "" -- cgit mrf-deployment