rename config.h to netboot_config.h in netboot.
This commit is contained in:
parent
47ba3d654e
commit
e8d6ef494e
7 changed files with 19 additions and 9 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
1999-09-15 OKUJI Yoshinori <okuji@kuicr.kyoto-u.ac.jp>
|
||||||
|
|
||||||
|
* netboot/config.h: Moved to ...
|
||||||
|
* netboot/netboot_config.h: ... here.
|
||||||
|
* netboot/config.c: Include netboot_config.h instead of config.h.
|
||||||
|
* netboot/fsys_tftp.c: Likewise.
|
||||||
|
* netboot/ip.c: Likewise.
|
||||||
|
* netboot/Makefile.am (libdrivers_a_SOURCES): Removed config.h
|
||||||
|
and added netboot_config.h.
|
||||||
|
|
||||||
1999-09-14 Pavel Roskin <pavel_roskin@geocities.com>
|
1999-09-14 Pavel Roskin <pavel_roskin@geocities.com>
|
||||||
|
|
||||||
* grub/asmstub.c [__linux__]: On GLibc 2.0 and newer use lseek,
|
* grub/asmstub.c [__linux__]: On GLibc 2.0 and newer use lseek,
|
||||||
|
|
|
@ -13,8 +13,8 @@ noinst_LIBRARIES = $(LIBDRIVERS)
|
||||||
DRIVERS = 3c509.c 3c509.h 3c59x.c cs89x0.c cs89x0.h eepro100.c \
|
DRIVERS = 3c509.c 3c509.h 3c59x.c cs89x0.c cs89x0.h eepro100.c \
|
||||||
lance.c ns8390.c ns8390.h
|
lance.c ns8390.c ns8390.h
|
||||||
|
|
||||||
libdrivers_a_SOURCES = byteorder.h config.c config.h fsys_tftp.c \
|
libdrivers_a_SOURCES = byteorder.h config.c netboot_config.h \
|
||||||
if.h io.h ip.c ip.h netboot.h netdevice.h nic.h pci.c pci.h \
|
fsys_tftp.c if.h io.h ip.c ip.h netboot.h netdevice.h nic.h \
|
||||||
$(DRIVERS)
|
pci.c pci.h $(DRIVERS)
|
||||||
libdrivers_a_CFLAGS = $(STAGE2_CFLAGS) -fno-builtin -nostdinc \
|
libdrivers_a_CFLAGS = $(STAGE2_CFLAGS) -fno-builtin -nostdinc \
|
||||||
-DFSYS_TFTP $(NET_CFLAGS) $(NET_EXTRAFLAGS)
|
-DFSYS_TFTP $(NET_CFLAGS) $(NET_EXTRAFLAGS)
|
||||||
|
|
|
@ -95,9 +95,9 @@ DRIVERS = 3c509.c 3c509.h 3c59x.c cs89x0.c cs89x0.h eepro100.c \
|
||||||
lance.c ns8390.c ns8390.h
|
lance.c ns8390.c ns8390.h
|
||||||
|
|
||||||
|
|
||||||
libdrivers_a_SOURCES = byteorder.h config.c config.h fsys_tftp.c \
|
libdrivers_a_SOURCES = byteorder.h config.c netboot_config.h \
|
||||||
if.h io.h ip.c ip.h netboot.h netdevice.h nic.h pci.c pci.h \
|
fsys_tftp.c if.h io.h ip.c ip.h netboot.h netdevice.h nic.h \
|
||||||
$(DRIVERS)
|
pci.c pci.h $(DRIVERS)
|
||||||
|
|
||||||
libdrivers_a_CFLAGS = $(STAGE2_CFLAGS) -fno-builtin -nostdinc \
|
libdrivers_a_CFLAGS = $(STAGE2_CFLAGS) -fno-builtin -nostdinc \
|
||||||
-DFSYS_TFTP $(NET_CFLAGS) $(NET_EXTRAFLAGS)
|
-DFSYS_TFTP $(NET_CFLAGS) $(NET_EXTRAFLAGS)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include "netboot.h"
|
#include "netboot.h"
|
||||||
#include "nic.h"
|
#include "nic.h"
|
||||||
|
|
||||||
#include "config.h"
|
#include "netboot_config.h"
|
||||||
|
|
||||||
#undef INCLUDE_PCI
|
#undef INCLUDE_PCI
|
||||||
#if defined(INCLUDE_NEPCI) || defined(INCLUDE_EEPRO100) || defined (INCLUDE_3c59x)
|
#if defined(INCLUDE_NEPCI) || defined(INCLUDE_EEPRO100) || defined (INCLUDE_3c59x)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#include "../stage2/filesys.h"
|
#include "../stage2/filesys.h"
|
||||||
|
|
||||||
#include "netboot.h"
|
#include "netboot.h"
|
||||||
#include "config.h"
|
#include "netboot_config.h"
|
||||||
#include "nic.h"
|
#include "nic.h"
|
||||||
|
|
||||||
#include "ip.h"
|
#include "ip.h"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include "netboot.h"
|
#include "netboot.h"
|
||||||
#include "config.h"
|
#include "netboot_config.h"
|
||||||
#include "nic.h"
|
#include "nic.h"
|
||||||
|
|
||||||
#include "ip.h"
|
#include "ip.h"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue