I noticed when I built a kernel package with options 'strip' and 'debug' that
the debug package was missing the debug information for the kernel modules.
This patch adds kernel modules to the targets for 'strip' and is compatible
with the split-out debug information packages.

Signed-off-by: Steven Noonan <[email protected]>
---
 scripts/makepkg.sh.in | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 940e947..4981595 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -1659,6 +1659,12 @@ tidy_install() {
                                        strip_flags="$STRIP_SHARED";;
                                *application/x-archive*)    # Libraries (.a)
                                        strip_flags="$STRIP_STATIC";;
+                               *application/x-object*)
+                                       case "$binary" in
+                                               *.ko)                   # 
Kernel module
+                                                       
strip_flags="$STRIP_SHARED";;
+                                       esac
+                                       continue;;
                                *application/x-executable*) # Binaries
                                        strip_flags="$STRIP_BINARIES";;
                                *)
-- 
1.8.5.4


Reply via email to