Revert kernel module stripping for now

This commit is contained in:
Ozan Çağlayan
2009-08-17 09:28:24 +00:00
parent 1a36d447d5
commit 8c7f1724b5
2 changed files with 7 additions and 1 deletions
+5 -1
View File
@@ -1,3 +1,7 @@
2009-08-04 Ozan Çağlayan <ozan@pardus.org.tr>
* (pisi/util.py): Revert kernel module stripping for now as it's not
tested well.
2009-08-14 Serdar Dalgıç <dalgic.srdr@gmail.com>
* tarZ support for archives
@@ -10,7 +14,7 @@
or --quiet parameter is passed.
2009-08-07 Ozan Çağlayan <ozan@pardus.org.tr>
* (utils.py): Strip kernel and modules as well as other binaries to build
* (pisi/util.py): Strip kernel and modules as well as other binaries to build
dbginfo packages for them.
2009-08-04 Ozan Çağlayan <ozan@pardus.org.tr>
+2
View File
@@ -513,6 +513,7 @@ def strip_file(filepath, fileinfo, outpath):
run_strip(filepath, "--strip-debug")
return True
"""
if "SB relocatable" in fileinfo and filepath.endswith(".ko"):
# kernel module
if ctx.config.values.build.generatedebug:
@@ -520,6 +521,7 @@ def strip_file(filepath, fileinfo, outpath):
save_elf_debug(filepath, outpath)
run_strip(filepath, "--strip-debug")
return True
"""
elif "SB executable" in fileinfo:
if ctx.config.values.build.generatedebug: