Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'kbuild-fixes-v6.3-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild

Pull Kbuild fixes from Masahiro Yamada:

- Fix linux-headers debian package

- Fix a merge_config.sh error due to a misspelled variable

- Fix modversion for 32-bit build machines

* tag 'kbuild-fixes-v6.3-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
modpost: Fix processing of CRCs on 32-bit build machines
scripts: merge_config: Fix typo in variable name.
kbuild: deb-pkg: set version for linux-headers paths

+4 -3
+1 -1
scripts/kconfig/merge_config.sh
··· 145 145 NEW_VAL=$(grep -w $CFG $MERGE_FILE) 146 146 BUILTIN_FLAG=false 147 147 if [ "$BUILTIN" = "true" ] && [ "${NEW_VAL#CONFIG_*=}" = "m" ] && [ "${PREV_VAL#CONFIG_*=}" = "y" ]; then 148 - ${WARNOVVERIDE} Previous value: $PREV_VAL 148 + ${WARNOVERRIDE} Previous value: $PREV_VAL 149 149 ${WARNOVERRIDE} New value: $NEW_VAL 150 150 ${WARNOVERRIDE} -y passed, will not demote y to m 151 151 ${WARNOVERRIDE}
+1 -1
scripts/mod/modpost.c
··· 1733 1733 if (!isdigit(*p)) 1734 1734 continue; /* skip this line */ 1735 1735 1736 - crc = strtol(p, &p, 0); 1736 + crc = strtoul(p, &p, 0); 1737 1737 if (*p != '\n') 1738 1738 continue; /* skip this line */ 1739 1739
+2 -1
scripts/package/builddeb
··· 162 162 163 163 install_kernel_headers () { 164 164 pdir=$1 165 + version=$2 165 166 166 167 rm -rf $pdir 167 168 ··· 230 229 linux-libc-dev) 231 230 install_libc_headers debian/linux-libc-dev;; 232 231 linux-headers-*) 233 - install_kernel_headers debian/linux-headers;; 232 + install_kernel_headers debian/linux-headers ${package#linux-headers-};; 234 233 esac 235 234 done 236 235