genode/dde_ipxe/src/lib/dde_ipxe/dummies.c
Christian Helmuth d0a68f055f dde_ipxe: use recent iPXE upstream version
Currently, we support the following NIC families:

- Intel gigabit ethernet (e1000, e1000e, igb)
- Intel eepro100
- Realtek 8139/8169

Fixes #423.
2012-10-22 17:01:01 +02:00

25 lines
620 B
C

/*
* \brief DDE iPXE dummy implementations
* \author Christian Helmuth
* \date 2010-09-13
*/
/*
* Copyright (C) 2010-2012 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#include "local.h"
int snprintf(char *buf, __SIZE_TYPE__ size, const char *fmt, ...) { TRACE; return 0; }
void clear_settings() { TRACE; }
void netdev_settings_operations() { TRACE; }
/* for drivers/net/realtek.c */
void nvo_init() { TRACE; }
void register_nvo() { TRACE; }
void unregister_nvo() { TRACE; }