diff options
author | Steven Rostedt <srostedt@redhat.com> | 2012-03-21 08:16:15 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2012-03-21 08:16:15 -0400 |
commit | 627977d83ad081c43c9bcd3ad1e89e816a752061 (patch) | |
tree | 75b0a6429db59e4f72c17e245a0b25a81b9fcdb0 /tools | |
parent | fde7d9049e55ab85a390be7f415d74c9f62dd0f9 (diff) |
ktest: Add INSTALL_MOD_STRIP=1 when installing modules
To keep the modules from bloating the target's filesystem
strip them during the install.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/testing/ktest/ktest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index 9507c4b251a8..2b63190c9f64 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl | |||
@@ -1643,7 +1643,7 @@ sub install { | |||
1643 | return; | 1643 | return; |
1644 | } | 1644 | } |
1645 | 1645 | ||
1646 | run_command "$make INSTALL_MOD_PATH=$tmpdir modules_install" or | 1646 | run_command "$make INSTALL_MOD_STRIP=1 INSTALL_MOD_PATH=$tmpdir modules_install" or |
1647 | dodie "Failed to install modules"; | 1647 | dodie "Failed to install modules"; |
1648 | 1648 | ||
1649 | my $modlib = "/lib/modules/$version"; | 1649 | my $modlib = "/lib/modules/$version"; |