diff options
-rwxr-xr-x | MAKEDEV | 1 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | compr.c | 3 | ||||
-rw-r--r-- | compr.h | 3 | ||||
-rw-r--r-- | compr_rtime.c | 3 | ||||
-rw-r--r-- | compr_zlib.c | 3 | ||||
-rw-r--r-- | crc32.c | 2 | ||||
-rw-r--r-- | crc32.h | 2 | ||||
-rw-r--r-- | doc_loadbios.c | 1 | ||||
-rw-r--r-- | docfdisk.c | 3 | ||||
-rw-r--r-- | flash_eraseall.c | 2 | ||||
-rw-r--r-- | flashcp.c | 2 | ||||
-rw-r--r-- | ftl_check.c | 1 | ||||
-rw-r--r-- | ftl_format.c | 1 | ||||
-rw-r--r-- | jffs-dump.c | 2 | ||||
-rw-r--r-- | jffs2dump.c | 2 | ||||
-rw-r--r-- | jffs2reader.c | 2 | ||||
-rw-r--r-- | mkfs.jffs.c | 2 | ||||
-rw-r--r-- | mkfs.jffs2.1 | 1 | ||||
-rw-r--r-- | nanddump.c | 2 | ||||
-rw-r--r-- | nandwrite.c | 2 | ||||
-rw-r--r-- | nftl_format.c | 5 | ||||
-rw-r--r-- | nftldump.c | 3 | ||||
-rw-r--r-- | rfddump.c | 2 | ||||
-rw-r--r-- | rfdformat.c | 2 | ||||
-rw-r--r-- | summary.h | 3 | ||||
-rw-r--r-- | sumtool.c | 2 |
27 files changed, 1 insertions, 58 deletions
@@ -1,5 +1,4 @@ #!/bin/bash -# $Id: MAKEDEV,v 1.9 2005/11/29 11:47:58 sean Exp $ function mkftl () { mknod /dev/ftl$1 b 44 $2 @@ -1,8 +1,6 @@ # -*- sh -*- -# $Id: Makefile,v 1.60 2005/11/07 11:15:09 gleixner Exp $ - SBINDIR=/usr/sbin MANDIR=/usr/man INCLUDEDIR=/usr/include @@ -6,9 +6,6 @@ * * For licensing information, see the file 'LICENCE' in this directory * in the jffs2 directory. - * - * $Id: compr.c,v 1.9 2005/11/07 11:15:09 gleixner Exp $ - * */ #include "compr.h" @@ -6,9 +6,6 @@ * * For licensing information, see the file 'LICENCE' in the * jffs2 directory. - * - * $Id: compr.h,v 1.7 2005/11/07 11:15:09 gleixner Exp $ - * */ #ifndef __JFFS2_COMPR_H__ diff --git a/compr_rtime.c b/compr_rtime.c index 59f174c..131536c 100644 --- a/compr_rtime.c +++ b/compr_rtime.c @@ -7,9 +7,6 @@ * * For licensing information, see the file 'LICENCE' in this directory. * - * $Id: compr_rtime.c,v 1.4 2005/11/07 11:15:09 gleixner Exp $ - * - * * Very simple lz77-ish encoder. * * Theory of operation: Both encoder and decoder have a list of "last diff --git a/compr_zlib.c b/compr_zlib.c index d097693..400b18a 100644 --- a/compr_zlib.c +++ b/compr_zlib.c @@ -30,9 +30,6 @@ * other provisions required by the GPL. If you do not delete the * provisions above, a recipient may use your version of this file * under either the RHEPL or the GPL. - * - * $Id: compr_zlib.c,v 1.4 2005/11/07 11:15:09 gleixner Exp $ - * */ #include <stdint.h> @@ -37,8 +37,6 @@ * polynomial $edb88320 */ -/* $Id: crc32.c,v 1.5 2004/02/24 17:40:51 dwmw2 Exp $ */ - #include <stdint.h> const uint32_t crc32_table[256] = { @@ -1,8 +1,6 @@ #ifndef CRC32_H #define CRC32_H -/* $Id: crc32.h,v 1.6 2005/11/07 11:15:09 gleixner Exp $ */ - #include <stdint.h> extern const uint32_t crc32_table[256]; diff --git a/doc_loadbios.c b/doc_loadbios.c index 66e2e6a..0a11fd2 100644 --- a/doc_loadbios.c +++ b/doc_loadbios.c @@ -8,7 +8,6 @@ #include <sys/ioctl.h> #include <sys/mount.h> -/* $Id: doc_loadbios.c,v 1.9 2005/11/07 11:15:10 gleixner Exp $ */ #include <mtd/mtd-user.h> unsigned char databuf[512]; @@ -1,9 +1,6 @@ /* * docfdisk.c: Modify INFTL partition tables * - * - * $Id: docfdisk.c,v 1.9 2005/11/07 11:15:10 gleixner Exp $ - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or diff --git a/flash_eraseall.c b/flash_eraseall.c index 5901b26..60036d3 100644 --- a/flash_eraseall.c +++ b/flash_eraseall.c @@ -17,8 +17,6 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA - - $Id: flash_eraseall.c,v 1.22 2005/02/17 14:55:06 hvr Exp $ */ #include <sys/types.h> #include <stdio.h> @@ -3,8 +3,6 @@ * Written by Abraham vd Merwe <abraham@2d3d.co.za> * All rights reserved. * - * $Id: flashcp.c,v 1.6 2005/11/07 11:15:11 gleixner Exp $ - * * Renamed to flashcp.c to avoid conflicts with fcp from fsh package * * Redistribution and use in source and binary forms, with or without diff --git a/ftl_check.c b/ftl_check.c index 5afc0f3..f41e79a 100644 --- a/ftl_check.c +++ b/ftl_check.c @@ -1,5 +1,4 @@ /* Ported to MTD system. - * $Id: ftl_check.c,v 1.6 2005/11/07 11:15:11 gleixner Exp $ * Based on: */ /*====================================================================== diff --git a/ftl_format.c b/ftl_format.c index c35e18b..ae00c99 100644 --- a/ftl_format.c +++ b/ftl_format.c @@ -1,5 +1,4 @@ /* Ported to MTD system. - * $Id: ftl_format.c,v 1.9 2005/11/07 11:15:12 gleixner Exp $ * Based on: */ /*====================================================================== diff --git a/jffs-dump.c b/jffs-dump.c index 4d76aca..31cdad2 100644 --- a/jffs-dump.c +++ b/jffs-dump.c @@ -3,8 +3,6 @@ * Useful when it buggers up. */ -/* $Id: jffs-dump.c,v 1.3 2005/11/07 11:15:12 gleixner Exp $ */ - #include <stdlib.h> #include <stdio.h> #include <string.h> diff --git a/jffs2dump.c b/jffs2dump.c index 2842f03..c5a99df 100644 --- a/jffs2dump.c +++ b/jffs2dump.c @@ -3,8 +3,6 @@ * * Copyright (C) 2003 Thomas Gleixner (tglx@linutronix.de) * - * $Id: jffs2dump.c,v 1.10 2005/09/26 11:49:39 havasi Exp $ - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. diff --git a/jffs2reader.c b/jffs2reader.c index 49cef6b..cde1d06 100644 --- a/jffs2reader.c +++ b/jffs2reader.c @@ -43,8 +43,6 @@ * *) Made it show major/minor numbers for device nodes * *) Made it show symlink targets * -Erik, 13 September 2001 - * - * $Id: jffs2reader.c,v 1.6 2005/11/07 11:15:12 gleixner Exp $ */ diff --git a/mkfs.jffs.c b/mkfs.jffs.c index 1f4595e..3242eb3 100644 --- a/mkfs.jffs.c +++ b/mkfs.jffs.c @@ -7,8 +7,6 @@ * has a different endianness than the host. */ -/* $Id: mkfs.jffs.c,v 1.15 2005/11/07 11:15:13 gleixner Exp $ */ - #include <stdlib.h> #include <stdio.h> #include <string.h> diff --git a/mkfs.jffs2.1 b/mkfs.jffs2.1 index 1b31ee9..4080032 100644 --- a/mkfs.jffs2.1 +++ b/mkfs.jffs2.1 @@ -1,5 +1,4 @@ .TH MKFS.JFFS2 1 -.\" $Id: mkfs.jffs2.1,v 1.6 2004/11/26 14:30:15 havasi Exp $ .SH NAME mkfs.jffs2 \- Create a JFFS2 file system image from directory .SH SYNOPSIS @@ -4,8 +4,6 @@ * Copyright (C) 2000 David Woodhouse (dwmw2@infradead.org) * Steven J. Hill (sjhill@realitydiluted.com) * - * $Id: nanddump.c,v 1.29 2005/11/07 11:15:13 gleixner Exp $ - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. diff --git a/nandwrite.c b/nandwrite.c index f74581d..6c4653f 100644 --- a/nandwrite.c +++ b/nandwrite.c @@ -4,8 +4,6 @@ * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com) * 2003 Thomas Gleixner (tglx@linutronix.de) * - * $Id: nandwrite.c,v 1.32 2005/11/07 11:15:13 gleixner Exp $ - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. diff --git a/nftl_format.c b/nftl_format.c index 4861753..42949a0 100644 --- a/nftl_format.c +++ b/nftl_format.c @@ -1,9 +1,6 @@ /* * nftl_format.c: Creating a NFTL/INFTL partition on an MTD device * - * - * $Id: nftl_format.c,v 1.24 2005/11/07 11:15:13 gleixner Exp $ - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or @@ -209,7 +206,7 @@ int main(int argc, char **argv) int c, do_inftl = 0, do_bbt = 0; - printf("$Id: nftl_format.c,v 1.24 2005/11/07 11:15:13 gleixner Exp $\n"); + printf("version 1.24 2005/11/07 11:15:13 gleixner\n"); if (argc < 2) usage(1); @@ -1,9 +1,6 @@ /* * nftldump.c: Dumping the content of NFTL partitions on a "Physical Disk" * - * - * $Id: nftldump.c,v 1.17 2005/11/07 11:15:13 gleixner Exp $ - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or @@ -7,8 +7,6 @@ * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * - * $Id: rfddump.c,v 1.3 2005/11/07 11:15:13 gleixner Exp $ */ #define _XOPEN_SOURCE 500 /* For pread */ diff --git a/rfdformat.c b/rfdformat.c index aa0f01c..d2637a1 100644 --- a/rfdformat.c +++ b/rfdformat.c @@ -8,8 +8,6 @@ * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * $Id: rfdformat.c,v 1.3 2005/11/07 11:15:14 gleixner Exp $ - * * This is very easy: just erase all the blocks and put the magic at * the beginning of each block. */ @@ -7,9 +7,6 @@ * University of Szeged, Hungary * * For licensing information, see the file 'LICENCE' in this directory. - * - * $Id: summary.h,v 1.7 2006/02/15 09:42:34 havasi Exp $ - * */ #ifndef JFFS2_SUMMARY_H @@ -6,8 +6,6 @@ * University of Szeged, Hungary * 2006 KaiGai Kohei <kaigai@ak.jp.nec.com> * - * $Id: sumtool.c,v 1.9 2006/01/23 08:22:45 havasi Exp $ - * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 |