Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c00c310e authored by David Woodhouse's avatar David Woodhouse
Browse files

[JFFS2] Tidy up licensing/copyright boilerplate.



In particular, remove the bit in the LICENCE file about contacting
Red Hat for alternative arrangements. Their errant IS department broke
that arrangement a long time ago -- the policy of collecting copyright
assignments from contributors came to an end when the plug was pulled on
the servers hosting the project, without notice or reason.

We do still dual-license it for use with eCos, with the GPL+exception
licence approved by the FSF as being GPL-compatible. It's just that nobody
has the right to license it differently.

Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent c36c46d5
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
The files in this directory and elsewhere which refer to this LICENCE
file are part of JFFS2, the Journalling Flash File System v2.

	Copyright (C) 2001, 2002 Red Hat, Inc.
	Copyright © 2001-2007 Red Hat, Inc. and others

JFFS2 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
@@ -28,8 +28,3 @@ of the GNU General Public License.
This exception does not invalidate any other reasons why a work based on
this file might be covered by the GNU General Public License.
For information on obtaining alternative licences for JFFS2, see 
http://sources.redhat.com/jffs2/jffs2-licence.html


	$Id: LICENCE,v 1.1 2002/05/20 14:56:37 dwmw2 Exp $
+0 −1
Original line number Diff line number Diff line
#
# Makefile for the Linux Journalling Flash File System v2 (JFFS2)
#
# $Id: Makefile.common,v 1.11 2005/09/07 08:34:53 havasi Exp $
#

obj-$(CONFIG_JFFS2_FS) += jffs2.o
+0 −1
Original line number Diff line number Diff line
	$Id: README.Locking,v 1.12 2005/04/13 13:22:35 dwmw2 Exp $

	JFFS2 LOCKING DOCUMENTATION
	---------------------------
+0 −3
Original line number Diff line number Diff line
$Id: TODO,v 1.18 2005/09/22 11:24:56 dedekind Exp $

 - support asynchronous operation -- add a per-fs 'reserved_space' count,
   let each outstanding write reserve the _maximum_ amount of physical
@@ -30,8 +29,6 @@ $Id: TODO,v 1.18 2005/09/22 11:24:56 dedekind Exp $
     the full dirent, we only need to go to the flash in lookup() when we think we've
     got a match, and in readdir(). 
   - Doubly-linked next_in_ino list to allow us to free obsoleted raw_node_refs immediately?
   - Remove totlen from jffs2_raw_node_ref? Need to have totlen passed into
	jffs2_mark_node_obsolete(). Can all callers work it out?
   - Remove size from jffs2_raw_node_frag. 

dedekind:
+2 −1
Original line number Diff line number Diff line
/*
 * JFFS2 -- Journalling Flash File System, Version 2.
 *
 * Copyright (C) 2006  NEC Corporation
 * Copyright © 2006  NEC Corporation
 *
 * Created by KaiGai Kohei <kaigai@ak.jp.nec.com>
 *
 * For licensing information, see the file 'LICENCE' in this directory.
 *
 */

#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/fs.h>
Loading