mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
2003-11-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: AM_CPPFLAGS += -I$(top_builddir). Use AM_CPPFLAGS instead of AM_CFLAGS. * src/ata.c: Include config.h. * src/bdbuf.c: Ditto. * src/blkdev.c: Ditto. * src/diskdevs.c: Ditto. * src/ide_part_table.c: Ditto. * src/ramdisk.c: Ditto.
This commit is contained in:
@@ -1,3 +1,14 @@
|
|||||||
|
2003-11-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* Makefile.am: AM_CPPFLAGS += -I$(top_builddir).
|
||||||
|
Use AM_CPPFLAGS instead of AM_CFLAGS.
|
||||||
|
* src/ata.c: Include config.h.
|
||||||
|
* src/bdbuf.c: Ditto.
|
||||||
|
* src/blkdev.c: Ditto.
|
||||||
|
* src/diskdevs.c: Ditto.
|
||||||
|
* src/ide_part_table.c: Ditto.
|
||||||
|
* src/ramdisk.c: Ditto.
|
||||||
|
|
||||||
2003-09-04 Joel Sherrill <joel@OARcorp.com>
|
2003-09-04 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* include/rtems/ide_part_table.h, src/ata.c, src/ide_part_table.c: URL
|
* include/rtems/ide_part_table.h, src/ata.c, src/ide_part_table.c: URL
|
||||||
|
|||||||
@@ -29,7 +29,8 @@ C_FILES = src/bdbuf.c src/blkdev.c src/diskdevs.c src/ramdisk.c\
|
|||||||
|
|
||||||
OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT))
|
OBJS = $(C_FILES:src/%.c=${ARCH}/%.$(OBJEXT))
|
||||||
|
|
||||||
AM_CFLAGS += $(LIBC_DEFINES)
|
AM_CPPFLAGS += -I$(top_builddir)
|
||||||
|
AM_CPPFLAGS += $(LIBC_DEFINES)
|
||||||
|
|
||||||
${ARCH}/%.$(OBJEXT): src/%.c
|
${ARCH}/%.$(OBJEXT): src/%.c
|
||||||
${COMPILE} -o $@ -c $<
|
${COMPILE} -o $@ -c $<
|
||||||
|
|||||||
@@ -15,6 +15,11 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <chain.h>
|
#include <chain.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|||||||
@@ -10,6 +10,10 @@
|
|||||||
* @(#) $Id$
|
* @(#) $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
|
#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
|
||||||
#include <rtems.h>
|
#include <rtems.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|||||||
@@ -7,6 +7,10 @@
|
|||||||
* @(#) $Id$
|
* @(#) $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include <rtems.h>
|
#include <rtems.h>
|
||||||
|
|||||||
@@ -7,6 +7,9 @@
|
|||||||
* @(#) $Id$
|
* @(#) $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <rtems.h>
|
#include <rtems.h>
|
||||||
#include <rtems/libio.h>
|
#include <rtems/libio.h>
|
||||||
|
|||||||
@@ -18,9 +18,14 @@
|
|||||||
*
|
*
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
#include <rtems/ide_part_table.h>
|
#if HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#include <rtems/ide_part_table.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* get_sector --
|
* get_sector --
|
||||||
* gets sector from the disk
|
* gets sector from the disk
|
||||||
|
|||||||
@@ -6,6 +6,10 @@
|
|||||||
* @(#) $Id$
|
* @(#) $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if HAVE_CONFIG_H
|
||||||
|
#include "config.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <rtems.h>
|
#include <rtems.h>
|
||||||
#include <rtems/libio.h>
|
#include <rtems/libio.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|||||||
Reference in New Issue
Block a user