Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (14 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
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
    12# Makefile for busybox
    23#
    34# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
    45#
    5 # Licensed under the GPL v2, see the file LICENSE in this tarball.
     6# Licensed under GPLv2, see file LICENSE in this source tree.
    67
    78NEEDED-$(CONFIG_CHATTR) = y
     
    1112
    1213lib-y:=
     14
     15
     16
    1317lib-$(NEEDED-y) += fgetsetflags.o fgetsetversion.o pf.o iod.o mntopts.o \
    1418           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  
    1414#endif
    1515
    16 /* `options' for print_flags() */
     16/* `options' for print_e2flags() */
    1717
    1818#define PFOPT_LONG  1 /* Must be 1 for compatibility with `int long_format'. */
     
    3838void list_super2(struct ext2_super_block * s, FILE *f);
    3939#define list_super(s) list_super2(s, stdout)
    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);
     40void print_fs_errors (FILE *f, unsigned short errors);
     41void print_flags (FILE *f, unsigned long flags, unsigned options);
     42void print_fs_state (FILE *f, unsigned short state);
    4343int setflags (int fd, unsigned long flags);
    4444int setversion (int fd, unsigned long version);
  • branches/2.2.9/mindi-busybox/e2fsprogs/old_e2fsprogs/e2p/ostype.c

    r1765 r2725  
    7171}
    7272#endif
    73 
    74 
  • branches/2.2.9/mindi-busybox/e2fsprogs/old_e2fsprogs/e2p/pf.c

    r1765 r2725  
    4949};
    5050
    51 void print_flags (FILE * f, unsigned long flags, unsigned options)
     51void print_flags (FILE *f, unsigned long flags, unsigned options)
    5252{
    5353    int long_opt = (options & PFOPT_LONG);
Note: See TracChangeset for help on using the changeset viewer.