diff options
author | Ahmad Fatoum <a.fatoum@pengutronix.de> | 2022-01-03 13:05:30 +0100 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2022-01-05 08:58:43 +0100 |
commit | d402089abee3cbf63ef63a9f6c411b3f53107433 (patch) | |
tree | a967f3a4aeecf70aef47d40f20324304b104c6d5 /fs | |
parent | 8c217afbee47c08b3d5ae6d9808adace15f64774 (diff) | |
download | barebox-d402089abee3cbf63ef63a9f6c411b3f53107433.tar.gz |
treewide: add SPDX-License-Identifier for Kbuild/Kconfig
To verify only Kconfig/Makefile is touched:
git show --numstat --format=oneline HEAD | grep -v 'Kconfig\|Makefile'
will print only arch/powerpc/Kbuild.
To verify nothing unexpected is added:
git show -U0 | grep '^-[^-]\|^+[^+]' | sort -u
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Link: https://lore.barebox.org/20220103120539.1730644-3-a.fatoum@pengutronix.de
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/Kconfig | 1 | ||||
-rw-r--r-- | fs/Makefile | 2 | ||||
-rw-r--r-- | fs/cramfs/Makefile | 2 | ||||
-rw-r--r-- | fs/ext4/Kconfig | 2 | ||||
-rw-r--r-- | fs/ext4/Makefile | 2 | ||||
-rw-r--r-- | fs/fat/Kconfig | 2 | ||||
-rw-r--r-- | fs/fat/Makefile | 2 | ||||
-rw-r--r-- | fs/jffs2/Kconfig | 2 | ||||
-rw-r--r-- | fs/jffs2/Makefile | 2 | ||||
-rw-r--r-- | fs/pstore/Kconfig | 2 | ||||
-rw-r--r-- | fs/pstore/Makefile | 2 | ||||
-rw-r--r-- | fs/squashfs/Kconfig | 2 | ||||
-rw-r--r-- | fs/squashfs/Makefile | 2 | ||||
-rw-r--r-- | fs/ubifs/Kconfig | 2 | ||||
-rw-r--r-- | fs/ubifs/Makefile | 2 |
15 files changed, 29 insertions, 0 deletions
diff --git a/fs/Kconfig b/fs/Kconfig index e0405de334..aeba00073e 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-only menu "Filesystem support" diff --git a/fs/Makefile b/fs/Makefile index fa950941de..6160ef4e1a 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + obj-$(CONFIG_FS_CRAMFS) += cramfs/ obj-$(CONFIG_FS_EXT4) += ext4/ obj-$(CONFIG_FS_RAMFS) += ramfs.o diff --git a/fs/cramfs/Makefile b/fs/cramfs/Makefile index 4e84a98fe1..1b54096664 100644 --- a/fs/cramfs/Makefile +++ b/fs/cramfs/Makefile @@ -1,2 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-only + obj-y += cramfs.o obj-y += uncompress.o diff --git a/fs/ext4/Kconfig b/fs/ext4/Kconfig index f36043d9a7..cb01675507 100644 --- a/fs/ext4/Kconfig +++ b/fs/ext4/Kconfig @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + config FS_EXT4 bool prompt "ext4 filesystem support" diff --git a/fs/ext4/Makefile b/fs/ext4/Makefile index 5084e3fb25..223f50e470 100644 --- a/fs/ext4/Makefile +++ b/fs/ext4/Makefile @@ -1 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0-only + obj-$(CONFIG_FS_EXT4) += ext4fs.o ext4_common.o ext_barebox.o diff --git a/fs/fat/Kconfig b/fs/fat/Kconfig index bc3b4b69e8..8cd3b604ba 100644 --- a/fs/fat/Kconfig +++ b/fs/fat/Kconfig @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + menuconfig FS_FAT bool select FS_LEGACY diff --git a/fs/fat/Makefile b/fs/fat/Makefile index fe47569bda..7a7a5ccdc6 100644 --- a/fs/fat/Makefile +++ b/fs/fat/Makefile @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + obj-y += fat.o pbl-y += fat-pbl.o obj-pbl-y += ff.o fat-diskio.o diff --git a/fs/jffs2/Kconfig b/fs/jffs2/Kconfig index 3121d369b4..329e7b806a 100644 --- a/fs/jffs2/Kconfig +++ b/fs/jffs2/Kconfig @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + menuconfig FS_JFFS2 bool select CRC32 diff --git a/fs/jffs2/Makefile b/fs/jffs2/Makefile index a4da48d3c3..3c5bfd261c 100644 --- a/fs/jffs2/Makefile +++ b/fs/jffs2/Makefile @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + obj-y += compr.o dir.o nodelist.o malloc.o obj-y += read.o readinode.o scan.o obj-y += build.o fs.o diff --git a/fs/pstore/Kconfig b/fs/pstore/Kconfig index 30c2de19c8..ff9091d3f3 100644 --- a/fs/pstore/Kconfig +++ b/fs/pstore/Kconfig @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + menuconfig FS_PSTORE select FS_LEGACY bool diff --git a/fs/pstore/Makefile b/fs/pstore/Makefile index c4043e1a8f..18475497a3 100644 --- a/fs/pstore/Makefile +++ b/fs/pstore/Makefile @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + # # Makefile for the linux pstorefs routines. # diff --git a/fs/squashfs/Kconfig b/fs/squashfs/Kconfig index 19b8297af6..af187a2a8a 100644 --- a/fs/squashfs/Kconfig +++ b/fs/squashfs/Kconfig @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + menuconfig FS_SQUASHFS bool prompt "squashfs support" diff --git a/fs/squashfs/Makefile b/fs/squashfs/Makefile index 81fc7e570d..59a78a24b0 100644 --- a/fs/squashfs/Makefile +++ b/fs/squashfs/Makefile @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + obj-y += squashfs.o obj-y += block.o obj-y += cache.o diff --git a/fs/ubifs/Kconfig b/fs/ubifs/Kconfig index 889a2be97a..ae58c2b7f2 100644 --- a/fs/ubifs/Kconfig +++ b/fs/ubifs/Kconfig @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + menuconfig FS_UBIFS bool depends on MTD_UBI diff --git a/fs/ubifs/Makefile b/fs/ubifs/Makefile index d8c4b2299e..7a1ce4e8fc 100644 --- a/fs/ubifs/Makefile +++ b/fs/ubifs/Makefile @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0-only + obj-y += ubifs.o io.o super.o sb.o master.o obj-y += scan.o dir.o misc.o obj-y += tnc.o tnc_misc.o debug.o |