License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2005-04-17 06:20:36 +08:00
|
|
|
# ===========================================================================
|
|
|
|
# Kernel configuration targets
|
|
|
|
# These targets are used from top-level makefile
|
|
|
|
|
2018-03-01 14:34:37 +08:00
|
|
|
PHONY += xconfig gconfig menuconfig config syncconfig update-po-config \
|
2009-04-30 10:52:23 +08:00
|
|
|
localmodconfig localyesconfig
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-08-25 16:51:27 +08:00
|
|
|
ifdef KBUILD_KCONFIG
|
|
|
|
Kconfig := $(KBUILD_KCONFIG)
|
|
|
|
else
|
2010-09-05 05:10:20 +08:00
|
|
|
Kconfig := Kconfig
|
2008-08-25 16:51:27 +08:00
|
|
|
endif
|
2007-10-26 02:42:18 +08:00
|
|
|
|
2015-04-08 19:30:42 +08:00
|
|
|
ifeq ($(quiet),silent_)
|
|
|
|
silent := -s
|
|
|
|
endif
|
|
|
|
|
2012-11-22 08:06:04 +08:00
|
|
|
# We need this, in case the user has it in its environment
|
|
|
|
unexport CONFIG_
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
xconfig: $(obj)/qconf
|
2015-04-08 19:30:42 +08:00
|
|
|
$< $(silent) $(Kconfig)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
gconfig: $(obj)/gconf
|
2015-04-08 19:30:42 +08:00
|
|
|
$< $(silent) $(Kconfig)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
menuconfig: $(obj)/mconf
|
2015-04-08 19:30:42 +08:00
|
|
|
$< $(silent) $(Kconfig)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
config: $(obj)/conf
|
2015-04-08 19:30:42 +08:00
|
|
|
$< $(silent) --oldaskconfig $(Kconfig)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2009-11-25 18:28:43 +08:00
|
|
|
nconfig: $(obj)/nconf
|
2015-04-08 19:30:42 +08:00
|
|
|
$< $(silent) $(Kconfig)
|
2009-11-25 18:28:43 +08:00
|
|
|
|
2018-01-27 06:59:00 +08:00
|
|
|
# This has become an internal implementation detail and is now deprecated
|
|
|
|
# for external use.
|
2018-03-01 14:34:37 +08:00
|
|
|
syncconfig: $(obj)/conf
|
2014-05-29 13:33:03 +08:00
|
|
|
$(Q)mkdir -p include/config include/generated
|
2015-04-08 19:30:42 +08:00
|
|
|
$< $(silent) --$@ $(Kconfig)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2018-03-01 19:18:01 +08:00
|
|
|
localyesconfig localmodconfig: $(obj)/conf
|
2014-05-29 13:33:03 +08:00
|
|
|
$(Q)mkdir -p include/config include/generated
|
2018-03-01 19:18:01 +08:00
|
|
|
$(Q)perl $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
|
2010-08-04 20:05:07 +08:00
|
|
|
$(Q)if [ -f .config ]; then \
|
2010-08-01 05:35:26 +08:00
|
|
|
cmp -s .tmp.config .config || \
|
|
|
|
(mv -f .config .config.old.1; \
|
|
|
|
mv -f .tmp.config .config; \
|
2018-03-01 19:18:01 +08:00
|
|
|
$< $(silent) --oldconfig $(Kconfig); \
|
2010-08-01 05:35:26 +08:00
|
|
|
mv -f .config.old.1 .config.old) \
|
|
|
|
else \
|
|
|
|
mv -f .tmp.config .config; \
|
2018-03-01 19:18:01 +08:00
|
|
|
$< $(silent) --oldconfig $(Kconfig); \
|
2009-05-07 23:09:55 +08:00
|
|
|
fi
|
2009-04-30 10:52:22 +08:00
|
|
|
$(Q)rm -f .tmp.config
|
|
|
|
|
2008-01-12 06:40:00 +08:00
|
|
|
# Create new linux.pot file
|
2007-06-11 02:38:27 +08:00
|
|
|
# Adjust charset to UTF-8 in .po file to accept UTF-8 in Kconfig files
|
2008-01-12 06:46:11 +08:00
|
|
|
update-po-config: $(obj)/kxgettext $(obj)/gconf.glade.h
|
2015-04-08 19:30:42 +08:00
|
|
|
$(Q)$(kecho) " GEN config.pot"
|
2011-04-27 06:13:05 +08:00
|
|
|
$(Q)xgettext --default-domain=linux \
|
|
|
|
--add-comments --keyword=_ --keyword=N_ \
|
|
|
|
--from-code=UTF-8 \
|
|
|
|
--files-from=$(srctree)/scripts/kconfig/POTFILES.in \
|
|
|
|
--directory=$(srctree) --directory=$(objtree) \
|
2007-06-11 02:38:27 +08:00
|
|
|
--output $(obj)/config.pot
|
|
|
|
$(Q)sed -i s/CHARSET/UTF-8/ $(obj)/config.pot
|
2011-11-05 19:21:30 +08:00
|
|
|
$(Q)(for i in `ls $(srctree)/arch/*/Kconfig \
|
|
|
|
$(srctree)/arch/*/um/Kconfig`; \
|
2008-01-12 06:40:00 +08:00
|
|
|
do \
|
2015-04-08 19:30:42 +08:00
|
|
|
$(kecho) " GEN $$i"; \
|
2008-04-26 03:15:41 +08:00
|
|
|
$(obj)/kxgettext $$i \
|
2008-01-12 06:40:00 +08:00
|
|
|
>> $(obj)/config.pot; \
|
|
|
|
done )
|
2015-04-08 19:30:42 +08:00
|
|
|
$(Q)$(kecho) " GEN linux.pot"
|
2008-01-12 06:40:00 +08:00
|
|
|
$(Q)msguniq --sort-by-file --to-code=UTF-8 $(obj)/config.pot \
|
2007-06-11 02:38:27 +08:00
|
|
|
--output $(obj)/linux.pot
|
|
|
|
$(Q)rm -f $(obj)/config.pot
|
[PATCH] Kconfig i18n support
This patch adds i18n support for make *config, allowing users to have the
config process in their own language.
No printk was harmed in the process, don't worry, so all the bug reports,
kernel messages, etc, remain in english, just the user tools to configure
the kernel are internationalized.
Users not interested in translations can just unset the related LANG,
LC_ALL, etc env variables and have the config process in plain english,
something like:
LANG= make menuconfig
is enough for having the whole config process in english. Or just don't
install any translation file.
Translations for brazilian portuguese are being done by a team of
volunteers at:
http://www.visionflex.inf.br/kernel_ptbr/pmwiki.php/Principal/Traducoes
To start the translation process:
make update-po-config
This will generate the pot template named scripts/kconfig/linux.pot,
copy it to, say, ~/es.po, to start the translation for spanish.
To test your translation, as root issue this command:
msgfmt -o /usr/share/locale/es/LC_MESSAGES/linux.mo ~/es.po
Replace "es" with your language code.
Then execute, for instance:
make menuconfig
The current patch doesn't use any optimization to reduce the size of the
generated .mo file, it is possible to use the config option as a key, but
this doesn't prevent the current patch from being used or the translations
done under the current scheme to be in any way lost if we chose to do any
kind of keying.
Thanks to Fabricio Vaccari for starting the pt_BR (brazilian portuguese)
translation effort, Thiago Maciera for helping me with the gconf.cc (QT
frontent) i18n coding and to all the volunteers that are already working on
the first translation, to pt_BR.
I left the question on whether to ship the translations with the stock kernel
sources to be discussed here, please share your suggestions.
Signed-off-by: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org
Signed-off-by: Andrew Morton <akpm@osdl.org>
2005-05-06 06:09:46 +08:00
|
|
|
|
2015-04-08 17:11:57 +08:00
|
|
|
# These targets map 1:1 to the commandline options of 'conf'
|
|
|
|
simple-targets := oldconfig allnoconfig allyesconfig allmodconfig \
|
|
|
|
alldefconfig randconfig listnewconfig olddefconfig
|
|
|
|
PHONY += $(simple-targets)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2015-04-08 17:11:57 +08:00
|
|
|
$(simple-targets): $(obj)/conf
|
2015-04-08 19:30:42 +08:00
|
|
|
$< $(silent) --$@ $(Kconfig)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2018-03-01 14:34:37 +08:00
|
|
|
PHONY += oldnoconfig silentoldconfig savedefconfig defconfig
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-09-01 01:05:17 +08:00
|
|
|
# oldnoconfig is an alias of olddefconfig, because people already are dependent
|
2015-06-01 01:35:51 +08:00
|
|
|
# on its behavior (sets new symbols to their default value but not 'n') with the
|
2012-09-01 01:05:17 +08:00
|
|
|
# counter-intuitive name.
|
2015-04-08 17:11:57 +08:00
|
|
|
oldnoconfig: olddefconfig
|
2018-01-18 12:13:43 +08:00
|
|
|
@echo " WARNING: \"oldnoconfig\" target will be removed after Linux 4.19"
|
|
|
|
@echo " Please use \"olddefconfig\" instead, which is an alias."
|
2012-09-01 01:05:17 +08:00
|
|
|
|
2018-03-01 14:34:37 +08:00
|
|
|
# We do not expect manual invokcation of "silentoldcofig" (or "syncconfig").
|
|
|
|
silentoldconfig: syncconfig
|
|
|
|
@echo " WARNING: \"silentoldconfig\" has been renamed to \"syncconfig\""
|
|
|
|
@echo " and is now an internal implementation detail."
|
|
|
|
@echo " What you want is probably \"oldconfig\"."
|
|
|
|
@echo " \"silentoldconfig\" will be removed after Linux 4.19"
|
|
|
|
|
2010-08-01 05:35:34 +08:00
|
|
|
savedefconfig: $(obj)/conf
|
2015-04-08 19:30:42 +08:00
|
|
|
$< $(silent) --$@=defconfig $(Kconfig)
|
2010-08-01 05:35:34 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
defconfig: $(obj)/conf
|
|
|
|
ifeq ($(KBUILD_DEFCONFIG),)
|
2015-04-08 19:30:42 +08:00
|
|
|
$< $(silent) --defconfig $(Kconfig)
|
2016-01-26 00:45:47 +08:00
|
|
|
else
|
|
|
|
ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG)),)
|
2015-04-08 19:30:42 +08:00
|
|
|
@$(kecho) "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
|
|
|
|
$(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
|
2015-09-23 13:40:34 +08:00
|
|
|
else
|
|
|
|
@$(kecho) "*** Default configuration is based on target '$(KBUILD_DEFCONFIG)'"
|
|
|
|
$(Q)$(MAKE) -f $(srctree)/Makefile $(KBUILD_DEFCONFIG)
|
2005-04-17 06:20:36 +08:00
|
|
|
endif
|
2016-01-26 00:45:47 +08:00
|
|
|
endif
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
%_defconfig: $(obj)/conf
|
2015-04-08 19:30:42 +08:00
|
|
|
$(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2015-03-13 14:21:43 +08:00
|
|
|
configfiles=$(wildcard $(srctree)/kernel/configs/$@ $(srctree)/arch/$(SRCARCH)/configs/$@)
|
2014-08-07 06:21:00 +08:00
|
|
|
|
2015-03-13 14:21:43 +08:00
|
|
|
%.config: $(obj)/conf
|
|
|
|
$(if $(call configfiles),, $(error No configuration exists for this target on this architecture))
|
|
|
|
$(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m .config $(configfiles)
|
|
|
|
+$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
|
2014-08-07 06:21:00 +08:00
|
|
|
|
|
|
|
PHONY += kvmconfig
|
2015-03-13 14:21:43 +08:00
|
|
|
kvmconfig: kvm_guest.config
|
|
|
|
@:
|
2014-08-07 06:21:00 +08:00
|
|
|
|
2015-05-21 02:53:39 +08:00
|
|
|
PHONY += xenconfig
|
|
|
|
xenconfig: xen.config
|
|
|
|
@:
|
|
|
|
|
2014-08-09 07:25:47 +08:00
|
|
|
PHONY += tinyconfig
|
2015-03-13 14:21:43 +08:00
|
|
|
tinyconfig:
|
|
|
|
$(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
|
2014-08-09 07:25:47 +08:00
|
|
|
|
2018-03-13 17:12:03 +08:00
|
|
|
# CHECK: -o cache_dir=<path> working?
|
|
|
|
PHONY += testconfig
|
|
|
|
testconfig: $(obj)/conf
|
|
|
|
$(PYTHON3) -B -m pytest $(srctree)/$(src)/tests \
|
|
|
|
-o cache_dir=$(abspath $(obj)/tests/.cache) \
|
|
|
|
$(if $(findstring 1,$(KBUILD_VERBOSE)),--capture=no)
|
|
|
|
clean-dirs += tests/.cache
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
# Help text used by make help
|
|
|
|
help:
|
|
|
|
@echo ' config - Update current config utilising a line-oriented program'
|
2015-05-26 19:39:54 +08:00
|
|
|
@echo ' nconfig - Update current config utilising a ncurses menu based'
|
|
|
|
@echo ' program'
|
2005-04-17 06:20:36 +08:00
|
|
|
@echo ' menuconfig - Update current config utilising a menu based program'
|
2015-04-06 17:27:45 +08:00
|
|
|
@echo ' xconfig - Update current config utilising a Qt based front-end'
|
2015-06-01 01:35:51 +08:00
|
|
|
@echo ' gconfig - Update current config utilising a GTK+ based front-end'
|
2005-04-17 06:20:36 +08:00
|
|
|
@echo ' oldconfig - Update current config utilising a provided .config as base'
|
2009-04-30 10:52:22 +08:00
|
|
|
@echo ' localmodconfig - Update current config disabling modules not loaded'
|
2009-04-30 10:52:23 +08:00
|
|
|
@echo ' localyesconfig - Update current config converting local mods to core'
|
2010-08-01 05:35:31 +08:00
|
|
|
@echo ' defconfig - New config with default from ARCH supplied defconfig'
|
2010-08-01 05:35:34 +08:00
|
|
|
@echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
|
2006-02-26 04:52:50 +08:00
|
|
|
@echo ' allnoconfig - New config where all options are answered with no'
|
2010-08-01 05:35:31 +08:00
|
|
|
@echo ' allyesconfig - New config where all options are accepted with yes'
|
|
|
|
@echo ' allmodconfig - New config selecting modules when possible'
|
|
|
|
@echo ' alldefconfig - New config with all symbols set to default'
|
|
|
|
@echo ' randconfig - New config with random answer to all options'
|
2010-08-01 05:35:28 +08:00
|
|
|
@echo ' listnewconfig - List new options'
|
2018-01-27 06:59:00 +08:00
|
|
|
@echo ' olddefconfig - Same as oldconfig but sets new symbols to their'
|
|
|
|
@echo ' default value without prompting'
|
2015-05-21 02:53:38 +08:00
|
|
|
@echo ' kvmconfig - Enable additional options for kvm guest kernel support'
|
2015-05-21 02:53:39 +08:00
|
|
|
@echo ' xenconfig - Enable additional options for xen dom0 and guest kernel support'
|
2014-08-09 07:25:47 +08:00
|
|
|
@echo ' tinyconfig - Configure the tiniest possible kernel'
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-07-28 04:10:27 +08:00
|
|
|
# lxdialog stuff
|
|
|
|
check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh
|
|
|
|
|
2007-10-16 08:23:12 +08:00
|
|
|
# Use recursively expanded variables so we do not call gcc unless
|
2006-07-28 04:10:27 +08:00
|
|
|
# we really need to do so. (Do not call gcc as part of make mrproper)
|
2010-08-23 08:03:06 +08:00
|
|
|
HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(check-lxdialog) -ccflags) \
|
|
|
|
-DLOCALE
|
2006-07-28 04:10:27 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
# ===========================================================================
|
|
|
|
# Shared Makefile for the various kconfig executables:
|
|
|
|
# conf: Used for defconfig, oldconfig and related targets
|
2009-11-25 18:28:43 +08:00
|
|
|
# nconf: Used for the nconfig target.
|
|
|
|
# Utilizes ncurses
|
2009-05-18 07:36:45 +08:00
|
|
|
# mconf: Used for the menuconfig target
|
2005-04-17 06:20:36 +08:00
|
|
|
# Utilizes the lxdialog package
|
|
|
|
# gconf: Used for the gconfig target
|
2015-06-01 01:35:51 +08:00
|
|
|
# Based on GTK+ which needs to be installed to compile it
|
2005-04-17 06:20:36 +08:00
|
|
|
# object files used by all kconfig flavours
|
|
|
|
|
2006-07-28 04:10:27 +08:00
|
|
|
lxdialog := lxdialog/checklist.o lxdialog/util.o lxdialog/inputbox.o
|
|
|
|
lxdialog += lxdialog/textbox.o lxdialog/yesno.o lxdialog/menubox.o
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
conf-objs := conf.o zconf.tab.o
|
2009-11-25 18:28:43 +08:00
|
|
|
mconf-objs := mconf.o zconf.tab.o $(lxdialog)
|
|
|
|
nconf-objs := nconf.o zconf.tab.o nconf.gui.o
|
[PATCH] Kconfig i18n support
This patch adds i18n support for make *config, allowing users to have the
config process in their own language.
No printk was harmed in the process, don't worry, so all the bug reports,
kernel messages, etc, remain in english, just the user tools to configure
the kernel are internationalized.
Users not interested in translations can just unset the related LANG,
LC_ALL, etc env variables and have the config process in plain english,
something like:
LANG= make menuconfig
is enough for having the whole config process in english. Or just don't
install any translation file.
Translations for brazilian portuguese are being done by a team of
volunteers at:
http://www.visionflex.inf.br/kernel_ptbr/pmwiki.php/Principal/Traducoes
To start the translation process:
make update-po-config
This will generate the pot template named scripts/kconfig/linux.pot,
copy it to, say, ~/es.po, to start the translation for spanish.
To test your translation, as root issue this command:
msgfmt -o /usr/share/locale/es/LC_MESSAGES/linux.mo ~/es.po
Replace "es" with your language code.
Then execute, for instance:
make menuconfig
The current patch doesn't use any optimization to reduce the size of the
generated .mo file, it is possible to use the config option as a key, but
this doesn't prevent the current patch from being used or the translations
done under the current scheme to be in any way lost if we chose to do any
kind of keying.
Thanks to Fabricio Vaccari for starting the pt_BR (brazilian portuguese)
translation effort, Thiago Maciera for helping me with the gconf.cc (QT
frontent) i18n coding and to all the volunteers that are already working on
the first translation, to pt_BR.
I left the question on whether to ship the translations with the stock kernel
sources to be discussed here, please share your suggestions.
Signed-off-by: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org
Signed-off-by: Andrew Morton <akpm@osdl.org>
2005-05-06 06:09:46 +08:00
|
|
|
kxgettext-objs := kxgettext.o zconf.tab.o
|
2011-06-02 04:14:47 +08:00
|
|
|
gconf-objs := gconf.o zconf.tab.o
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2018-05-22 15:22:19 +08:00
|
|
|
hostprogs-y := conf nconf mconf kxgettext gconf
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2018-03-23 21:04:33 +08:00
|
|
|
targets += zconf.lex.c
|
2018-05-22 15:22:19 +08:00
|
|
|
clean-files := .tmp_gtkcheck
|
2018-03-23 21:04:31 +08:00
|
|
|
clean-files += gconf.glade.h
|
2008-01-12 06:40:00 +08:00
|
|
|
clean-files += config.pot linux.pot
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-12-10 03:11:15 +08:00
|
|
|
# Check that we have the required ncurses stuff installed for lxdialog (menuconfig)
|
|
|
|
PHONY += $(obj)/dochecklxdialog
|
2017-05-21 17:44:47 +08:00
|
|
|
$(addprefix $(obj)/, mconf.o $(lxdialog)): $(obj)/dochecklxdialog
|
2007-12-10 03:11:15 +08:00
|
|
|
$(obj)/dochecklxdialog:
|
2010-08-16 12:19:04 +08:00
|
|
|
$(Q)$(CONFIG_SHELL) $(check-lxdialog) -check $(HOSTCC) $(HOST_EXTRACFLAGS) $(HOSTLOADLIBES_mconf)
|
2007-12-10 03:11:15 +08:00
|
|
|
|
|
|
|
always := dochecklxdialog
|
|
|
|
|
2007-08-13 05:15:44 +08:00
|
|
|
# Add environment specific flags
|
|
|
|
HOST_EXTRACFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCC) $(HOSTCFLAGS))
|
2018-01-17 04:44:45 +08:00
|
|
|
HOST_EXTRACXXFLAGS += $(shell $(CONFIG_SHELL) $(srctree)/$(src)/check.sh $(HOSTCXX) $(HOSTCXXFLAGS))
|
2005-10-31 07:03:20 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
# generated files seem to need this to find local include files
|
2011-05-23 13:08:19 +08:00
|
|
|
HOSTCFLAGS_zconf.lex.o := -I$(src)
|
2005-04-17 06:20:36 +08:00
|
|
|
HOSTCFLAGS_zconf.tab.o := -I$(src)
|
|
|
|
|
2011-06-02 04:14:47 +08:00
|
|
|
HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0`
|
2006-01-02 18:25:30 +08:00
|
|
|
HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
|
2011-06-06 11:36:05 +08:00
|
|
|
-Wno-missing-prototypes
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-08-16 12:19:04 +08:00
|
|
|
HOSTLOADLIBES_mconf = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
|
|
|
|
|
2013-03-06 21:02:02 +08:00
|
|
|
HOSTLOADLIBES_nconf = $(shell \
|
2014-06-04 15:52:31 +08:00
|
|
|
pkg-config --libs menuw panelw ncursesw 2>/dev/null \
|
|
|
|
|| pkg-config --libs menu panel ncurses 2>/dev/null \
|
2013-03-06 21:02:02 +08:00
|
|
|
|| echo "-lmenu -lpanel -lncurses" )
|
2018-05-22 15:22:19 +08:00
|
|
|
|
|
|
|
# qconf: Used for the xconfig target based on Qt
|
|
|
|
hostprogs-y += qconf
|
|
|
|
qconf-cxxobjs := qconf.o
|
|
|
|
qconf-objs := zconf.tab.o
|
|
|
|
|
|
|
|
HOSTLOADLIBES_qconf = $(shell . $(obj)/.qconf-cfg && echo $$libs)
|
|
|
|
HOSTCXXFLAGS_qconf.o = $(shell . $(obj)/.qconf-cfg && echo $$cflags)
|
|
|
|
|
|
|
|
$(obj)/qconf.o: $(obj)/.qconf-cfg $(obj)/qconf.moc
|
|
|
|
|
|
|
|
quiet_cmd_moc = MOC $@
|
|
|
|
cmd_moc = $(shell . $(obj)/.qconf-cfg && echo $$moc) -i $< -o $@
|
|
|
|
|
|
|
|
$(obj)/%.moc: $(src)/%.h $(obj)/.qconf-cfg
|
|
|
|
$(call cmd,moc)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
$(obj)/gconf.o: $(obj)/.tmp_gtkcheck
|
|
|
|
|
2014-08-19 15:34:22 +08:00
|
|
|
ifeq ($(MAKECMDGOALS),gconfig)
|
2005-04-17 06:20:36 +08:00
|
|
|
-include $(obj)/.tmp_gtkcheck
|
|
|
|
|
2015-06-01 01:35:51 +08:00
|
|
|
# GTK+ needs some extra effort, too...
|
2005-04-17 06:20:36 +08:00
|
|
|
$(obj)/.tmp_gtkcheck:
|
2006-01-02 18:25:30 +08:00
|
|
|
@if `pkg-config --exists gtk+-2.0 gmodule-2.0 libglade-2.0`; then \
|
|
|
|
if `pkg-config --atleast-version=2.0.0 gtk+-2.0`; then \
|
2005-04-17 06:20:36 +08:00
|
|
|
touch $@; \
|
|
|
|
else \
|
2012-07-08 05:32:18 +08:00
|
|
|
echo >&2 "*"; \
|
|
|
|
echo >&2 "* GTK+ is present but version >= 2.0.0 is required."; \
|
|
|
|
echo >&2 "*"; \
|
2005-04-17 06:20:36 +08:00
|
|
|
false; \
|
|
|
|
fi \
|
|
|
|
else \
|
2012-07-08 05:32:18 +08:00
|
|
|
echo >&2 "*"; \
|
|
|
|
echo >&2 "* Unable to find the GTK+ installation. Please make sure that"; \
|
|
|
|
echo >&2 "* the GTK+ 2.0 development package is correctly installed..."; \
|
|
|
|
echo >&2 "* You need gtk+-2.0, glib-2.0 and libglade-2.0."; \
|
|
|
|
echo >&2 "*"; \
|
2005-04-17 06:20:36 +08:00
|
|
|
false; \
|
|
|
|
fi
|
|
|
|
endif
|
|
|
|
|
2017-08-20 01:17:02 +08:00
|
|
|
$(obj)/zconf.tab.o: $(obj)/zconf.lex.c
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2015-06-01 01:35:51 +08:00
|
|
|
# Extract gconf menu items for i18n support
|
2008-01-12 06:46:11 +08:00
|
|
|
$(obj)/gconf.glade.h: $(obj)/gconf.glade
|
2011-04-27 06:16:53 +08:00
|
|
|
$(Q)intltool-extract --type=gettext/glade --srcdir=$(srctree) \
|
2011-04-27 06:13:05 +08:00
|
|
|
$(obj)/gconf.glade
|
2018-05-22 15:22:19 +08:00
|
|
|
|
|
|
|
# check if necessary packages are available, and configure build flags
|
|
|
|
define filechk_conf_cfg
|
|
|
|
$(CONFIG_SHELL) $<
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(obj)/.%conf-cfg: $(src)/%conf-cfg.sh FORCE
|
|
|
|
$(call filechk,conf_cfg)
|
|
|
|
|
|
|
|
clean-files += .*conf-cfg
|