Changeset 588:9a2f360ec1e6

Show
Ignore:
Timestamp:
06/08/08 00:37:26 (7 months ago)
Author:
David Anderson <dave@…>
Branch:
default
Message:

Make the filesystem into a library.

Location:
nxos
Files:
5 modified
2 moved

Legend:

Unmodified
Added
Removed
  • nxos/base/lib/fs/fs.c

    r576 r588  
    1414#include "base/assert.h" 
    1515#include "base/util.h" 
    16 #include "base/fs.h" 
    1716#include "base/drivers/_efc.h" 
     17 
     18#include "base/lib/fs/fs.h" 
    1819 
    1920/* Magic marker. */ 
  • nxos/base/lib/fs/fs.h

    r577 r588  
    1313 */ 
    1414 
    15 #ifndef __NXOS_BASE_FS_H__ 
    16 #define __NXOS_BASE_FS_H__ 
     15#ifndef __NXOS_BASE_LIB_FS_H__ 
     16#define __NXOS_BASE_LIB_FS_H__ 
    1717 
    1818#include "base/types.h" 
    1919#include "base/drivers/_efc.h" 
    2020 
    21 /** @addtogroup kernel */ 
     21/** @addtogroup lib */ 
    2222/*@{*/ 
    2323 
  • nxos/base/lib/rcmd/_rcmd.c

    r558 r588  
    1 /* Copyright (C) 2007 the NxOS developers 
     1/* Copyright (c) 2007,2008 the NxOS developers 
    22 * 
    33 * See AUTHORS for a full list of the developers. 
     
    1010#include "base/util.h" 
    1111#include "base/display.h" 
    12 #include "base/fs.h" 
    1312#include "base/nxt.h" 
    1413#include "base/drivers/motors.h" 
    1514#include "base/drivers/sound.h" 
    1615#include "base/drivers/systick.h" 
     16#include "base/lib/fs/fs.h" 
    1717#include "base/lib/rcmd/_rcmd.h" 
    1818 
  • nxos/base/lib/rcmd/_rcmd.h

    r551 r588  
    33 */ 
    44 
    5 /* Copyright (C) 2007 the NxOS developers 
     5/* Copyright (c) 2007,2008 the NxOS developers 
    66 * 
    77 * See AUTHORS for a full list of the developers. 
     
    1515 
    1616#include "base/types.h" 
    17 #include "base/fs.h" 
     17#include "base/lib/fs/fs.h" 
    1818#include "base/lib/rcmd/rcmd.h" 
    1919 
  • nxos/base/lib/rcmd/rcmd.c

    r551 r588  
    1 /* Copyright (C) 2007 the NxOS developers 
     1/* Copyright (c) 2007,2008 the NxOS developers 
    22 * 
    33 * See AUTHORS for a full list of the developers. 
     
    1010#include "base/util.h" 
    1111#include "base/assert.h" 
    12 #include "base/fs.h" 
     12#include "base/lib/fs/fs.h" 
    1313#include "base/lib/rcmd/rcmd.h" 
    1414#include "base/lib/rcmd/_rcmd.h" 
  • nxos/systems/explore/main.c

    r502 r588  
     1/* Copyright (c) 2007,2008 the NxOS developers 
     2 * 
     3 * See AUTHORS for a full list of the developers. 
     4 * 
     5 * Redistribution of this file is permitted under 
     6 * the terms of the GNU Public License (GPL) version 2. 
     7 */ 
     8 
    19/** Exploring bot. 
    210 * 
     
    917#include "base/core.h" 
    1018#include "base/display.h" 
    11 #include "base/dump.h" 
    1219#include "base/drivers/avr.h" 
    1320#include "base/drivers/systick.h" 
  • nxos/systems/tag-route/main.c

    r551 r588  
     1/* Copyright (c) 2008 the NxOS developers 
     2 * 
     3 * See AUTHORS for a full list of the developers. 
     4 * 
     5 * Redistribution of this file is permitted under 
     6 * the terms of the GNU Public License (GPL) version 2. 
     7 */ 
     8 
    19/** Tag-route follower. 
    210 * 
     
    715#include "base/core.h" 
    816#include "base/display.h" 
    9 #include "base/fs.h" 
    1017#include "base/util.h" 
    1118#include "base/drivers/avr.h" 
    1219#include "base/drivers/systick.h" 
    1320#include "base/drivers/motors.h" 
     21#include "base/lib/fs/fs.h" 
    1422#include "base/lib/gui/gui.h" 
    1523#include "base/lib/rcmd/rcmd.h"