~ubuntu-branches/ubuntu/trusty/apex/trusty

« back to all changes in this revision

Viewing changes to src/net/arp.c

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2009-11-10 11:55:15 UTC
  • mfrom: (2.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091110115515-6jjsf6rc8py35awe
Tags: 1.6.10ubuntu1
* Merge from debian testing, remaining changes:
  - Move apex VMA address to 4MiB to leave enough space for the ubuntu
  kernel and not overwrite apex in ram when loading.
  - nslu2 configuration: set CONFIG_RAMDISK_SIZE=0x0055FFF0 instead of
  0x005FFFF0 to make enough room for ubuntu initramfs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
   Copyright (C) 2005 Marc Singer
7
7
 
8
 
 
9
8
   This program is free software; you can redistribute it and/or
10
 
   modify it under the terms of the GNU General Public License as
11
 
   published by the Free Software Foundation; either version 2 of the
12
 
   License, or (at your option) any later version.
13
 
 
14
 
   This program is distributed in the hope that it will be useful, but
15
 
   WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17
 
   General Public License for more details.
18
 
 
19
 
   You should have received a copy of the GNU General Public License
20
 
   along with this program; if not, write to the Free Software
21
 
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22
 
   USA.
 
9
   modify it under the terms of the GNU General Public License
 
10
   version 2 as published by the Free Software Foundation.
 
11
   Please refer to the file debian/copyright for further details.
23
12
 
24
13
   -----------
25
14
   DESCRIPTION
45
34
 
46
35
//#define TALK
47
36
 
48
 
#if TALK > 0
 
37
#if defined (TALK) && TALK > 0
49
38
# define DBG(l,f...)            if (l <= TALK) printf (f);
50
39
#else
51
40
# define DBG(l,f...)            do {} while (0)