Changeset 27fd651 in mainline


Ignore:
Timestamp:
2009-05-19T21:48:05Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
83937ccd
Parents:
2c0e5d2
Message:

Add 'bdd' shell command (block device dump) for testing block device drivers.

Location:
uspace/app/bdsh
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/Makefile

    r2c0e5d2 r27fd651  
    3434LIBC_PREFIX = ../../lib/libc
    3535SOFTINT_PREFIX = ../../lib/softint
     36LIBBLOCK_PREFIX = ../../lib/libblock
    3637
    3738include $(LIBC_PREFIX)/Makefile.toolchain
    3839
    39 CFLAGS += -I../../srv/kbd/include
     40CFLAGS += -I../../srv/kbd/include -I$(LIBBLOCK_PREFIX)
    4041
    41 LIBS = $(LIBC_PREFIX)/libc.a
     42LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBC_PREFIX)/libc.a
    4243DEFS += -DRELEASE=$(RELEASE)
    4344
     
    5253        cmds/modules/mkdir/ \
    5354        cmds/modules/rm/ \
     55        cmds/modules/bdd/ \
    5456        cmds/modules/cat/ \
    5557        cmds/modules/touch/ \
     
    6971        cmds/modules/mkdir/mkdir.c \
    7072        cmds/modules/rm/rm.c \
     73        cmds/modules/bdd/bdd.c \
    7174        cmds/modules/cat/cat.c \
    7275        cmds/modules/touch/touch.c \
  • uspace/app/bdsh/cmds/modules/modules.h

    r2c0e5d2 r27fd651  
    2121#include "mkdir/entry.h"
    2222#include "rm/entry.h"
     23#include "bdd/entry.h"
    2324#include "cat/entry.h"
    2425#include "touch/entry.h"
     
    3940#include "mkdir/mkdir_def.h"
    4041#include "rm/rm_def.h"
     42#include "bdd/bdd_def.h"
    4143#include "cat/cat_def.h"
    4244#include "touch/touch_def.h"
Note: See TracChangeset for help on using the changeset viewer.