diff options
-rw-r--r-- | libdwfl/ChangeLog | 4 | ||||
-rw-r--r-- | libdwfl/linux-kernel-modules.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog index ab47c404..c644ffe8 100644 --- a/libdwfl/ChangeLog +++ b/libdwfl/ChangeLog @@ -1,3 +1,7 @@ +2014-08-14 Mark Wielaard <mjw@redhat.com> + + * linux-kernel-modules.c (check-suffix): Also TRY .ko.xz. + 2014-07-24 Jan Kratochvil <jan.kratochvil@redhat.com> Fix report_r_debug for prelinked libraries. diff --git a/libdwfl/linux-kernel-modules.c b/libdwfl/linux-kernel-modules.c index 1ad7d2f6..e4065d89 100644 --- a/libdwfl/linux-kernel-modules.c +++ b/libdwfl/linux-kernel-modules.c @@ -302,6 +302,9 @@ check_suffix (const FTSENT *f, size_t namelen) #if USE_BZLIB TRY (".ko.bz2"); #endif +#if USE_LZMA + TRY (".ko.xz"); +#endif return 0; |