Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
Pull kbuild changes from Michal Marek: - Alias generation in modpost is cross-compile safe. - kernel/timeconst.h is now generated using a bc script instead of perl. - scripts/link-vmlinux.sh now works with an alternative $KCONFIG_CONFIG. - destination-y for exported headers is supported in Kbuild files again. - depmod is called with -P $CONFIG_SYMBOL_PREFIX on architectures that need it. - CONFIG_DEBUG_INFO_REDUCED disables var-tracking - scripts/setlocalversion works with too much translated locales ;) * 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild: kbuild: Fix reading of .config in link-vmlinux.sh kbuild: Unset language specific variables in setlocalversion script Kbuild: Disable var tracking with CONFIG_DEBUG_INFO_REDUCED depmod: pass -P $CONFIG_SYMBOL_PREFIX kbuild: Fix destination-y for installed headers scripts/link-vmlinux.sh: source variables from KCONFIG_CONFIG kernel: Replace timeconst.pl with a bc script mod/file2alias: make modalias generation safe for cross compiling
This commit is contained in:
@ -7,15 +7,15 @@
|
||||
#
|
||||
# ==========================================================================
|
||||
|
||||
# called may set destination dir (when installing to asm/)
|
||||
_dst := $(or $(destination-y),$(dst),$(obj))
|
||||
|
||||
# generated header directory
|
||||
gen := $(if $(gen),$(gen),$(subst include/,include/generated/,$(obj)))
|
||||
|
||||
kbuild-file := $(srctree)/$(obj)/Kbuild
|
||||
include $(kbuild-file)
|
||||
|
||||
# called may set destination dir (when installing to asm/)
|
||||
_dst := $(or $(destination-y),$(dst),$(obj))
|
||||
|
||||
old-kbuild-file := $(srctree)/$(subst uapi/,,$(obj))/Kbuild
|
||||
ifneq ($(wildcard $(old-kbuild-file)),)
|
||||
include $(old-kbuild-file)
|
||||
|
@ -66,10 +66,6 @@ modules := $(patsubst %.o,%.ko, $(wildcard $(__modules:.ko=.o)))
|
||||
# Stop after building .o files if NOFINAL is set. Makes compile tests quicker
|
||||
_modpost: $(if $(KBUILD_MODPOST_NOFINAL), $(modules:.ko:.o),$(modules))
|
||||
|
||||
ifneq ($(KBUILD_BUILDHOST),$(ARCH))
|
||||
cross_build := 1
|
||||
endif
|
||||
|
||||
# Step 2), invoke modpost
|
||||
# Includes step 3,4
|
||||
modpost = scripts/mod/modpost \
|
||||
@ -80,8 +76,7 @@ modpost = scripts/mod/modpost \
|
||||
$(if $(KBUILD_EXTRA_SYMBOLS), $(patsubst %, -e %,$(KBUILD_EXTRA_SYMBOLS))) \
|
||||
$(if $(KBUILD_EXTMOD),-o $(modulesymfile)) \
|
||||
$(if $(CONFIG_DEBUG_SECTION_MISMATCH),,-S) \
|
||||
$(if $(KBUILD_EXTMOD)$(KBUILD_MODPOST_WARN),-w) \
|
||||
$(if $(cross_build),-c)
|
||||
$(if $(KBUILD_EXTMOD)$(KBUILD_MODPOST_WARN),-w)
|
||||
|
||||
quiet_cmd_modpost = MODPOST $(words $(filter-out vmlinux FORCE, $^)) modules
|
||||
cmd_modpost = $(modpost) -s
|
||||
|
@ -2,16 +2,36 @@
|
||||
#
|
||||
# A depmod wrapper used by the toplevel Makefile
|
||||
|
||||
if test $# -ne 2; then
|
||||
echo "Usage: $0 /sbin/depmod <kernelrelease>" >&2
|
||||
if test $# -ne 3; then
|
||||
echo "Usage: $0 /sbin/depmod <kernelrelease> <symbolprefix>" >&2
|
||||
exit 1
|
||||
fi
|
||||
DEPMOD=$1
|
||||
KERNELRELEASE=$2
|
||||
SYMBOL_PREFIX=$3
|
||||
|
||||
if ! test -r System.map -a -x "$DEPMOD"; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# older versions of depmod don't support -P <symbol-prefix>
|
||||
# support was added in module-init-tools 3.13
|
||||
if test -n "$SYMBOL_PREFIX"; then
|
||||
release=$("$DEPMOD" --version)
|
||||
package=$(echo "$release" | cut -d' ' -f 1)
|
||||
if test "$package" = "module-init-tools"; then
|
||||
version=$(echo "$release" | cut -d' ' -f 2)
|
||||
later=$(printf '%s\n' "$version" "3.13" | sort -V | tail -n 1)
|
||||
if test "$later" != "$version"; then
|
||||
# module-init-tools < 3.13, drop the symbol prefix
|
||||
SYMBOL_PREFIX=""
|
||||
fi
|
||||
fi
|
||||
if test -n "$SYMBOL_PREFIX"; then
|
||||
SYMBOL_PREFIX="-P $SYMBOL_PREFIX"
|
||||
fi
|
||||
fi
|
||||
|
||||
# older versions of depmod require the version string to start with three
|
||||
# numbers, so we cheat with a symlink here
|
||||
depmod_hack_needed=true
|
||||
@ -34,7 +54,7 @@ set -- -ae -F System.map
|
||||
if test -n "$INSTALL_MOD_PATH"; then
|
||||
set -- "$@" -b "$INSTALL_MOD_PATH"
|
||||
fi
|
||||
"$DEPMOD" "$@" "$KERNELRELEASE"
|
||||
"$DEPMOD" "$@" "$KERNELRELEASE" $SYMBOL_PREFIX
|
||||
ret=$?
|
||||
|
||||
if $depmod_hack_needed; then
|
||||
|
@ -132,7 +132,14 @@ if [ "$1" = "clean" ]; then
|
||||
fi
|
||||
|
||||
# We need access to CONFIG_ symbols
|
||||
. ./.config
|
||||
case "${KCONFIG_CONFIG}" in
|
||||
*/*)
|
||||
. "${KCONFIG_CONFIG}"
|
||||
;;
|
||||
*)
|
||||
# Force using a file from the current directory
|
||||
. "./${KCONFIG_CONFIG}"
|
||||
esac
|
||||
|
||||
#link vmlinux.o
|
||||
info LD vmlinux.o
|
||||
|
1
scripts/mod/.gitignore
vendored
1
scripts/mod/.gitignore
vendored
@ -1,4 +1,5 @@
|
||||
elfconfig.h
|
||||
mk_elfconfig
|
||||
modpost
|
||||
devicetable-offsets.h
|
||||
|
||||
|
@ -3,9 +3,44 @@ always := $(hostprogs-y) empty.o
|
||||
|
||||
modpost-objs := modpost.o file2alias.o sumversion.o
|
||||
|
||||
devicetable-offsets-file := devicetable-offsets.h
|
||||
|
||||
define sed-y
|
||||
"/^->/{s:->#\(.*\):/* \1 */:; \
|
||||
s:^->\([^ ]*\) [\$$#]*\([-0-9]*\) \(.*\):#define \1 \2 /* \3 */:; \
|
||||
s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \
|
||||
s:->::; p;}"
|
||||
endef
|
||||
|
||||
quiet_cmd_offsets = GEN $@
|
||||
define cmd_offsets
|
||||
(set -e; \
|
||||
echo "#ifndef __DEVICEVTABLE_OFFSETS_H__"; \
|
||||
echo "#define __DEVICEVTABLE_OFFSETS_H__"; \
|
||||
echo "/*"; \
|
||||
echo " * DO NOT MODIFY."; \
|
||||
echo " *"; \
|
||||
echo " * This file was generated by Kbuild"; \
|
||||
echo " *"; \
|
||||
echo " */"; \
|
||||
echo ""; \
|
||||
sed -ne $(sed-y) $<; \
|
||||
echo ""; \
|
||||
echo "#endif" ) > $@
|
||||
endef
|
||||
|
||||
# We use internal kbuild rules to avoid the "is up to date" message from make
|
||||
scripts/mod/devicetable-offsets.s: scripts/mod/devicetable-offsets.c FORCE
|
||||
$(Q)mkdir -p $(dir $@)
|
||||
$(call if_changed_dep,cc_s_c)
|
||||
|
||||
$(obj)/$(devicetable-offsets-file): scripts/mod/devicetable-offsets.s
|
||||
$(call cmd,offsets)
|
||||
|
||||
# dependencies on generated files need to be listed explicitly
|
||||
|
||||
$(obj)/modpost.o $(obj)/file2alias.o $(obj)/sumversion.o: $(obj)/elfconfig.h
|
||||
$(obj)/file2alias.o: $(obj)/$(devicetable-offsets-file)
|
||||
|
||||
quiet_cmd_elfconfig = MKELF $@
|
||||
cmd_elfconfig = $(obj)/mk_elfconfig < $< > $@
|
||||
|
178
scripts/mod/devicetable-offsets.c
Normal file
178
scripts/mod/devicetable-offsets.c
Normal file
@ -0,0 +1,178 @@
|
||||
#include <linux/kbuild.h>
|
||||
#include <linux/mod_devicetable.h>
|
||||
|
||||
#define DEVID(devid) DEFINE(SIZE_##devid, sizeof(struct devid))
|
||||
#define DEVID_FIELD(devid, field) \
|
||||
DEFINE(OFF_##devid##_##field, offsetof(struct devid, field))
|
||||
|
||||
int main(void)
|
||||
{
|
||||
DEVID(usb_device_id);
|
||||
DEVID_FIELD(usb_device_id, match_flags);
|
||||
DEVID_FIELD(usb_device_id, idVendor);
|
||||
DEVID_FIELD(usb_device_id, idProduct);
|
||||
DEVID_FIELD(usb_device_id, bcdDevice_lo);
|
||||
DEVID_FIELD(usb_device_id, bcdDevice_hi);
|
||||
DEVID_FIELD(usb_device_id, bDeviceClass);
|
||||
DEVID_FIELD(usb_device_id, bDeviceSubClass);
|
||||
DEVID_FIELD(usb_device_id, bDeviceProtocol);
|
||||
DEVID_FIELD(usb_device_id, bInterfaceClass);
|
||||
DEVID_FIELD(usb_device_id, bInterfaceSubClass);
|
||||
DEVID_FIELD(usb_device_id, bInterfaceProtocol);
|
||||
DEVID_FIELD(usb_device_id, bInterfaceNumber);
|
||||
|
||||
DEVID(hid_device_id);
|
||||
DEVID_FIELD(hid_device_id, bus);
|
||||
DEVID_FIELD(hid_device_id, group);
|
||||
DEVID_FIELD(hid_device_id, vendor);
|
||||
DEVID_FIELD(hid_device_id, product);
|
||||
|
||||
DEVID(ieee1394_device_id);
|
||||
DEVID_FIELD(ieee1394_device_id, match_flags);
|
||||
DEVID_FIELD(ieee1394_device_id, vendor_id);
|
||||
DEVID_FIELD(ieee1394_device_id, model_id);
|
||||
DEVID_FIELD(ieee1394_device_id, specifier_id);
|
||||
DEVID_FIELD(ieee1394_device_id, version);
|
||||
|
||||
DEVID(pci_device_id);
|
||||
DEVID_FIELD(pci_device_id, vendor);
|
||||
DEVID_FIELD(pci_device_id, device);
|
||||
DEVID_FIELD(pci_device_id, subvendor);
|
||||
DEVID_FIELD(pci_device_id, subdevice);
|
||||
DEVID_FIELD(pci_device_id, class);
|
||||
DEVID_FIELD(pci_device_id, class_mask);
|
||||
|
||||
DEVID(ccw_device_id);
|
||||
DEVID_FIELD(ccw_device_id, match_flags);
|
||||
DEVID_FIELD(ccw_device_id, cu_type);
|
||||
DEVID_FIELD(ccw_device_id, cu_model);
|
||||
DEVID_FIELD(ccw_device_id, dev_type);
|
||||
DEVID_FIELD(ccw_device_id, dev_model);
|
||||
|
||||
DEVID(ap_device_id);
|
||||
DEVID_FIELD(ap_device_id, dev_type);
|
||||
|
||||
DEVID(css_device_id);
|
||||
DEVID_FIELD(css_device_id, type);
|
||||
|
||||
DEVID(serio_device_id);
|
||||
DEVID_FIELD(serio_device_id, type);
|
||||
DEVID_FIELD(serio_device_id, proto);
|
||||
DEVID_FIELD(serio_device_id, id);
|
||||
DEVID_FIELD(serio_device_id, extra);
|
||||
|
||||
DEVID(acpi_device_id);
|
||||
DEVID_FIELD(acpi_device_id, id);
|
||||
|
||||
DEVID(pnp_device_id);
|
||||
DEVID_FIELD(pnp_device_id, id);
|
||||
|
||||
DEVID(pnp_card_device_id);
|
||||
DEVID_FIELD(pnp_card_device_id, devs);
|
||||
|
||||
DEVID(pcmcia_device_id);
|
||||
DEVID_FIELD(pcmcia_device_id, match_flags);
|
||||
DEVID_FIELD(pcmcia_device_id, manf_id);
|
||||
DEVID_FIELD(pcmcia_device_id, card_id);
|
||||
DEVID_FIELD(pcmcia_device_id, func_id);
|
||||
DEVID_FIELD(pcmcia_device_id, function);
|
||||
DEVID_FIELD(pcmcia_device_id, device_no);
|
||||
DEVID_FIELD(pcmcia_device_id, prod_id_hash);
|
||||
|
||||
DEVID(of_device_id);
|
||||
DEVID_FIELD(of_device_id, name);
|
||||
DEVID_FIELD(of_device_id, type);
|
||||
DEVID_FIELD(of_device_id, compatible);
|
||||
|
||||
DEVID(vio_device_id);
|
||||
DEVID_FIELD(vio_device_id, type);
|
||||
DEVID_FIELD(vio_device_id, compat);
|
||||
|
||||
DEVID(input_device_id);
|
||||
DEVID_FIELD(input_device_id, flags);
|
||||
DEVID_FIELD(input_device_id, bustype);
|
||||
DEVID_FIELD(input_device_id, vendor);
|
||||
DEVID_FIELD(input_device_id, product);
|
||||
DEVID_FIELD(input_device_id, version);
|
||||
DEVID_FIELD(input_device_id, evbit);
|
||||
DEVID_FIELD(input_device_id, keybit);
|
||||
DEVID_FIELD(input_device_id, relbit);
|
||||
DEVID_FIELD(input_device_id, absbit);
|
||||
DEVID_FIELD(input_device_id, mscbit);
|
||||
DEVID_FIELD(input_device_id, ledbit);
|
||||
DEVID_FIELD(input_device_id, sndbit);
|
||||
DEVID_FIELD(input_device_id, ffbit);
|
||||
DEVID_FIELD(input_device_id, swbit);
|
||||
|
||||
DEVID(eisa_device_id);
|
||||
DEVID_FIELD(eisa_device_id, sig);
|
||||
|
||||
DEVID(parisc_device_id);
|
||||
DEVID_FIELD(parisc_device_id, hw_type);
|
||||
DEVID_FIELD(parisc_device_id, hversion);
|
||||
DEVID_FIELD(parisc_device_id, hversion_rev);
|
||||
DEVID_FIELD(parisc_device_id, sversion);
|
||||
|
||||
DEVID(sdio_device_id);
|
||||
DEVID_FIELD(sdio_device_id, class);
|
||||
DEVID_FIELD(sdio_device_id, vendor);
|
||||
DEVID_FIELD(sdio_device_id, device);
|
||||
|
||||
DEVID(ssb_device_id);
|
||||
DEVID_FIELD(ssb_device_id, vendor);
|
||||
DEVID_FIELD(ssb_device_id, coreid);
|
||||
DEVID_FIELD(ssb_device_id, revision);
|
||||
|
||||
DEVID(bcma_device_id);
|
||||
DEVID_FIELD(bcma_device_id, manuf);
|
||||
DEVID_FIELD(bcma_device_id, id);
|
||||
DEVID_FIELD(bcma_device_id, rev);
|
||||
DEVID_FIELD(bcma_device_id, class);
|
||||
|
||||
DEVID(virtio_device_id);
|
||||
DEVID_FIELD(virtio_device_id, device);
|
||||
DEVID_FIELD(virtio_device_id, vendor);
|
||||
|
||||
DEVID(hv_vmbus_device_id);
|
||||
DEVID_FIELD(hv_vmbus_device_id, guid);
|
||||
|
||||
DEVID(i2c_device_id);
|
||||
DEVID_FIELD(i2c_device_id, name);
|
||||
|
||||
DEVID(spi_device_id);
|
||||
DEVID_FIELD(spi_device_id, name);
|
||||
|
||||
DEVID(dmi_system_id);
|
||||
DEVID_FIELD(dmi_system_id, matches);
|
||||
|
||||
DEVID(platform_device_id);
|
||||
DEVID_FIELD(platform_device_id, name);
|
||||
|
||||
DEVID(mdio_device_id);
|
||||
DEVID_FIELD(mdio_device_id, phy_id);
|
||||
DEVID_FIELD(mdio_device_id, phy_id_mask);
|
||||
|
||||
DEVID(zorro_device_id);
|
||||
DEVID_FIELD(zorro_device_id, id);
|
||||
|
||||
DEVID(isapnp_device_id);
|
||||
DEVID_FIELD(isapnp_device_id, vendor);
|
||||
DEVID_FIELD(isapnp_device_id, function);
|
||||
|
||||
DEVID(ipack_device_id);
|
||||
DEVID_FIELD(ipack_device_id, format);
|
||||
DEVID_FIELD(ipack_device_id, vendor);
|
||||
DEVID_FIELD(ipack_device_id, device);
|
||||
|
||||
DEVID(amba_id);
|
||||
DEVID_FIELD(amba_id, id);
|
||||
DEVID_FIELD(amba_id, mask);
|
||||
|
||||
DEVID(x86_cpu_id);
|
||||
DEVID_FIELD(x86_cpu_id, feature);
|
||||
DEVID_FIELD(x86_cpu_id, family);
|
||||
DEVID_FIELD(x86_cpu_id, model);
|
||||
DEVID_FIELD(x86_cpu_id, vendor);
|
||||
|
||||
return 0;
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -2128,7 +2128,7 @@ int main(int argc, char **argv)
|
||||
struct ext_sym_list *extsym_iter;
|
||||
struct ext_sym_list *extsym_start = NULL;
|
||||
|
||||
while ((opt = getopt(argc, argv, "i:I:e:cmsSo:awM:K:")) != -1) {
|
||||
while ((opt = getopt(argc, argv, "i:I:e:msSo:awM:K:")) != -1) {
|
||||
switch (opt) {
|
||||
case 'i':
|
||||
kernel_read = optarg;
|
||||
@ -2137,9 +2137,6 @@ int main(int argc, char **argv)
|
||||
module_read = optarg;
|
||||
external_module = 1;
|
||||
break;
|
||||
case 'c':
|
||||
cross_build = 1;
|
||||
break;
|
||||
case 'e':
|
||||
external_module = 1;
|
||||
extsym_iter =
|
||||
|
@ -108,7 +108,7 @@ scm_version()
|
||||
fi
|
||||
|
||||
# Check for svn and a svn repo.
|
||||
if rev=`svn info 2>/dev/null | grep '^Last Changed Rev'`; then
|
||||
if rev=`LANG= LC_ALL= LC_MESSAGES=C svn info 2>/dev/null | grep '^Last Changed Rev'`; then
|
||||
rev=`echo $rev | awk '{print $NF}'`
|
||||
printf -- '-svn%s' "$rev"
|
||||
|
||||
|
Reference in New Issue
Block a user