Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/networking/udhcp/common.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 984 - (show annotations) (download)
Sun May 30 11:32:42 2010 UTC (13 years, 11 months ago) by niro
File MIME type: text/plain
File size: 316 byte(s)
-updated to busybox-1.16.1 and enabled blkid/uuid support in default config
1 /* vi: set sw=4 ts=4: */
2 /* common.c
3 *
4 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
5 */
6 #include "common.h"
7
8 #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
9 unsigned dhcp_verbose;
10 #endif
11
12 const uint8_t MAC_BCAST_ADDR[6] ALIGN2 = {
13 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
14 };