From ce8c9ae7d1298ade006652138c0e0b527d9e3ece Mon Sep 17 00:00:00 2001 From: mucor Date: Fri, 17 Feb 2023 16:22:57 +0800 Subject: [PATCH] fix: add missing file for new ip kernel scripts close: #I6FVGG Signed-off-by: mucor --- apply_newip.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apply_newip.sh b/apply_newip.sh index f8de27d..f630800 100755 --- a/apply_newip.sh +++ b/apply_newip.sh @@ -31,8 +31,8 @@ function main() fi cd $KERNEL_BUILD_ROOT/net/newip/ - ln -s -f $(realpath --relative-to=$KERNEL_BUILD_ROOT/net/newip $NEWIP_SOURCE_ROOT/src/linux/net/newip)/*.h ./ - ln -s -f $(realpath --relative-to=$KERNEL_BUILD_ROOT/net/newip $NEWIP_SOURCE_ROOT/src/common)/*.h ./ + ln -s -f $(realpath --relative-to=$KERNEL_BUILD_ROOT/net/newip $NEWIP_SOURCE_ROOT/src/linux/net/newip)/* ./ + ln -s -f $(realpath --relative-to=$KERNEL_BUILD_ROOT/net/newip $NEWIP_SOURCE_ROOT/src/common)/* ./ cd $KERNEL_BUILD_ROOT/include/uapi/linux ln -s -f $(realpath --relative-to=$KERNEL_BUILD_ROOT/include/uapi/linux $NEWIP_SOURCE_ROOT/src/common)/nip_addr.h nip_addr.h -- Gitee