diff options
author | Cédric Le Goater <clg@kaod.org> | 2017-04-14 10:35:03 +0200 |
---|---|---|
committer | Jason Wang <jasowang@redhat.com> | 2017-04-25 19:17:25 +0800 |
commit | 47bb83cad45eb7ce194a8ffd18f73c98edb46aec (patch) | |
tree | 7d6d36f8d73b0c280d6f9aba732551efbdbad32a /slirp/Makefile.objs | |
parent | ea337c654906c053da45c461d91df76a7b84429c (diff) |
slirp: add a fake NC-SI backend
NC-SI (Network Controller Sideband Interface) enables a BMC to manage
a set of NICs on a system. This model takes the simplest approach and
reverses the NC-SI packets to pretend a NIC is present and exercise
the Linux driver.
The NCSI header file <ncsi-pkt.h> comes from mainline Linux and was
untabified.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'slirp/Makefile.objs')
-rw-r--r-- | slirp/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slirp/Makefile.objs b/slirp/Makefile.objs index 1baa1f1c7c..28049b03cd 100644 --- a/slirp/Makefile.objs +++ b/slirp/Makefile.objs @@ -2,4 +2,4 @@ common-obj-y = cksum.o if.o ip_icmp.o ip6_icmp.o ip6_input.o ip6_output.o \ ip_input.o ip_output.o dnssearch.o dhcpv6.o common-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o common-obj-y += tcp_subr.o tcp_timer.o udp.o udp6.o bootp.o tftp.o arp_table.o \ - ndp_table.o + ndp_table.o ncsi.o |