Changeset 2725 in MondoRescue for branches/2.2.9/mindi-busybox/e2fsprogs/old_e2fsprogs/e2p
- Timestamp:
- Feb 25, 2011, 9:26:54 PM (14 years ago)
- Location:
- branches/2.2.9/mindi-busybox/e2fsprogs/old_e2fsprogs/e2p
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.9/mindi-busybox/e2fsprogs/old_e2fsprogs/e2p/Kbuild
r1765 r2725 1 # DO NOT EDIT. This file is generated from Kbuild.src 1 2 # Makefile for busybox 2 3 # 3 4 # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org> 4 5 # 5 # Licensed under the GPL v2, see the file LICENSE in this tarball.6 # Licensed under GPLv2, see file LICENSE in this source tree. 6 7 7 8 NEEDED-$(CONFIG_CHATTR) = y … … 11 12 12 13 lib-y:= 14 15 16 13 17 lib-$(NEEDED-y) += fgetsetflags.o fgetsetversion.o pf.o iod.o mntopts.o \ 14 18 feature.o ls.o uuid.o pe.o ostype.o ps.o hashstr.o \ -
branches/2.2.9/mindi-busybox/e2fsprogs/old_e2fsprogs/e2p/e2p.h
r1765 r2725 14 14 #endif 15 15 16 /* `options' for print_ flags() */16 /* `options' for print_e2flags() */ 17 17 18 18 #define PFOPT_LONG 1 /* Must be 1 for compatibility with `int long_format'. */ … … 38 38 void list_super2(struct ext2_super_block * s, FILE *f); 39 39 #define list_super(s) list_super2(s, stdout) 40 void print_fs_errors (FILE * 41 void print_flags (FILE * 42 void print_fs_state (FILE * 40 void print_fs_errors (FILE *f, unsigned short errors); 41 void print_flags (FILE *f, unsigned long flags, unsigned options); 42 void print_fs_state (FILE *f, unsigned short state); 43 43 int setflags (int fd, unsigned long flags); 44 44 int setversion (int fd, unsigned long version); -
branches/2.2.9/mindi-busybox/e2fsprogs/old_e2fsprogs/e2p/ostype.c
r1765 r2725 71 71 } 72 72 #endif 73 74 -
branches/2.2.9/mindi-busybox/e2fsprogs/old_e2fsprogs/e2p/pf.c
r1765 r2725 49 49 }; 50 50 51 void print_flags (FILE * 51 void print_flags (FILE *f, unsigned long flags, unsigned options) 52 52 { 53 53 int long_opt = (options & PFOPT_LONG);
Note:
See TracChangeset
for help on using the changeset viewer.