mirror of https://gitee.com/openkylin/qemu.git
consolidate definition for tap script and smb support
Since the introduction of net.c in r5581 there had been 2 places where the location of the TAP helper scripts and SMB daemon are defined. The following patch move those definitions to net.h so they are accessible for net.c and vl.c but defined only once (Carlo Marcelo Arenas Belon) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6093 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
475dc65f6d
commit
f54825cc24
8
net.c
8
net.c
|
@ -120,14 +120,6 @@
|
|||
#define memalign(align, size) malloc(size)
|
||||
#endif
|
||||
|
||||
#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
|
||||
#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
|
||||
#ifdef __sun__
|
||||
#define SMBD_COMMAND "/usr/sfw/sbin/smbd"
|
||||
#else
|
||||
#define SMBD_COMMAND "/usr/sbin/smbd"
|
||||
#endif
|
||||
|
||||
static VLANState *first_vlan;
|
||||
|
||||
/***********************************************************/
|
||||
|
|
8
net.h
8
net.h
|
@ -85,4 +85,12 @@ void net_cleanup(void);
|
|||
int slirp_is_inited(void);
|
||||
void net_client_check(void);
|
||||
|
||||
#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
|
||||
#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
|
||||
#ifdef __sun__
|
||||
#define SMBD_COMMAND "/usr/sfw/sbin/smbd"
|
||||
#else
|
||||
#define SMBD_COMMAND "/usr/sbin/smbd"
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
8
vl.c
8
vl.c
|
@ -149,14 +149,6 @@
|
|||
|
||||
#include "exec-all.h"
|
||||
|
||||
#define DEFAULT_NETWORK_SCRIPT "/etc/qemu-ifup"
|
||||
#define DEFAULT_NETWORK_DOWN_SCRIPT "/etc/qemu-ifdown"
|
||||
#ifdef __sun__
|
||||
#define SMBD_COMMAND "/usr/sfw/sbin/smbd"
|
||||
#else
|
||||
#define SMBD_COMMAND "/usr/sbin/smbd"
|
||||
#endif
|
||||
|
||||
//#define DEBUG_UNUSED_IOPORT
|
||||
//#define DEBUG_IOPORT
|
||||
//#define DEBUG_NET
|
||||
|
|
Loading…
Reference in New Issue