mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
2003-08-06 Thomas Doerfler<Thomas.Doerfler@imd-systems.de>
PR 369/filesystem * Makefile.am, shell/cmds.c, wrapup/Makefile.am: sample application to show the use of the DOSFS functions * fsmount/Makefile.am, fsmount/README, fsmount/fsmount.c, fsmount/fsmount.h: New files.
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
2003-08-06 Thomas Doerfler<Thomas.Doerfler@imd-systems.de>
|
||||
|
||||
PR 369/filesystem
|
||||
* Makefile.am, shell/cmds.c, wrapup/Makefile.am: sample application to
|
||||
show the use of the DOSFS functions
|
||||
* fsmount/Makefile.am, fsmount/README, fsmount/fsmount.c,
|
||||
fsmount/fsmount.h: New files.
|
||||
|
||||
2003-08-05 Till Strauman <strauman@slac.stanford.edu>
|
||||
|
||||
PR 436/rtems_misc
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
ACLOCAL_AMFLAGS = -I ../aclocal
|
||||
|
||||
SUBDIRS = capture cpuuse devnull dummy dumpbuf monitor mw-fb shell \
|
||||
SUBDIRS = capture cpuuse devnull dummy dumpbuf fsmount monitor mw-fb shell \
|
||||
rtmonuse serdbg stackchk untar wrapup
|
||||
|
||||
EXTRA_DIST = README
|
||||
|
||||
@@ -70,6 +70,7 @@ serdbg/Makefile
|
||||
stackchk/Makefile
|
||||
capture/Makefile
|
||||
untar/Makefile
|
||||
fsmount/Makefile
|
||||
mw-fb/Makefile
|
||||
wrapup/Makefile
|
||||
])
|
||||
|
||||
@@ -286,7 +286,7 @@ int main_ls(int argc, char *argv[])
|
||||
strcat(nbuf,dp->d_name); /* always the fullpathname. Avoid ftpd problem.*/
|
||||
if (stat(nbuf, &stat_buf) == 0)
|
||||
{ /* AWFUL buts works...*/
|
||||
strftime(sbuf,sizeof(sbuf)-1,"%b %d %H:%M",gmtime(&stat_buf.st_atime));
|
||||
strftime(sbuf,sizeof(sbuf)-1,"%b %d %H:%M",gmtime(&stat_buf.st_mtime));
|
||||
pwd=getpwuid(stat_buf.st_uid);
|
||||
user=pwd?pwd->pw_name:"nouser";
|
||||
grp=getgrgid(stat_buf.st_gid);
|
||||
|
||||
@@ -28,6 +28,7 @@ TMP_LIBS += ../devnull/$(ARCH)/libdevnull.a
|
||||
TMP_LIBS += ../dummy/$(ARCH)/libdummy.a
|
||||
TMP_LIBS += ../mw-fb/$(ARCH)/libmw-fb.a
|
||||
TMP_LIBS += ../capture/$(ARCH)/libcapture.a
|
||||
TMP_LIBS += ../fsmount/$(ARCH)/libfsmount.a
|
||||
|
||||
#
|
||||
# (OPTIONAL) Add local stuff here using +=
|
||||
|
||||
Reference in New Issue
Block a user