This action will force synchronization from 泰晓科技/Linux Lab, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
#!/bin/sh# SPDX-License-Identifier: GPL-2.0## A depmod wrapper used by the toplevel Makefileif test $# -ne 2; thenecho "Usage: 0ドル /sbin/depmod <kernelrelease>" >&2exit 1fiDEPMOD=1ドルKERNELRELEASE=2ドルif ! test -r System.map ; thenecho "Warning: modules_install: missing 'System.map' file. Skipping depmod." >&2exit 0fiif [ -z $(command -v $DEPMOD) ]; thenecho "Warning: 'make modules_install' requires $DEPMOD. Please install it." >&2echo "This is probably in the kmod package." >&2exit 0fi# older versions of depmod require the version string to start with three# numbers, so we cheat with a symlink heredepmod_hack_needed=truetmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX)mkdir -p "$tmp_dir/lib/modules/$KERNELRELEASE"if "$DEPMOD" -b "$tmp_dir" $KERNELRELEASE 2>/dev/null; thenif test -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep" -o \-e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep.bin"; thendepmod_hack_needed=falsefifirm -rf "$tmp_dir"if $depmod_hack_needed; thensymlink="$INSTALL_MOD_PATH/lib/modules/99.98.$KERNELRELEASE"ln -s "$KERNELRELEASE" "$symlink"KERNELRELEASE=99.98.$KERNELRELEASEfiset -- -ae -F System.mapif test -n "$INSTALL_MOD_PATH"; thenset -- "$@" -b "$INSTALL_MOD_PATH"fi"$DEPMOD" "$@" "$KERNELRELEASE"ret=$?if $depmod_hack_needed; thenrm -f "$symlink"fiexit $ret
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。