search for: b8141d5

Displaying 1 result from an estimated 1 matches for "b8141d5".

Did you mean: b814195
2012 Sep 21
1
[PATCH] Update SuSE Linux detection.
...nternal.h +++ b/src/guestfs-internal.h @@ -346,6 +346,8 @@ enum inspect_os_distro { OS_DISTRO_BUILDROOT, OS_DISTRO_CIRROS, OS_DISTRO_FREEDOS, + OS_DISTRO_SUSE_BASED, + OS_DISTRO_SLES, }; enum inspect_os_package_format { diff --git a/src/inspect-fs-unix.c b/src/inspect-fs-unix.c index b8141d5..91b8516 100644 --- a/src/inspect-fs-unix.c +++ b/src/inspect-fs-unix.c @@ -67,6 +67,12 @@ static pcre *re_mdN; static pcre *re_freebsd; static pcre *re_diskbyid; static pcre *re_netbsd; +static pcre *re_opensuse; +static pcre *re_sles; +static pcre *re_nld; +static pcre *re_opensuse_version; +s...