Browse Source

Fake / Rene Rebe:

hotfix target/bootdisk/build_stage1.sh stripping too much breaks the
	kernel objects


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@2880 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
fake 21 years ago
parent
commit
077dde7b27
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      target/bootdisk/build_stage1.sh

+ 1
- 1
target/bootdisk/build_stage1.sh

@ -38,7 +38,7 @@ for x in ../2nd_stage/lib/modules/*/kernel/drivers/{scsi,net}/*.{ko,o} ; do
if [ -f $x ]; then
xx=${x#../2nd_stage/}
mkdir -p $( dirname $xx ) ; cp $x $xx
strip $xx # --strip-debug --strip-unneeded $xx
strip --strip-debug $xx # stripping more breaks the object
fi
done
#

Loading…
Cancel
Save