diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-04-16 02:43:02 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-04-16 02:43:02 +0200 |
commit | 41550d40a271e85f632cfcef8d6e972d8f5b0bf7 (patch) | |
tree | d593c33730f03ffc976cc5b701569fe7669381fd /src/hostnamed.c | |
parent | 63415a2d2b13df368cfdd9ad50184f7b77c4af9f (diff) |
hostnamed: add reference to SMBIOS specs
Diffstat (limited to 'src/hostnamed.c')
-rw-r--r-- | src/hostnamed.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/hostnamed.c b/src/hostnamed.c index 4ba1d4a570..d7e553e6d1 100644 --- a/src/hostnamed.c +++ b/src/hostnamed.c @@ -3,7 +3,7 @@ /*** This file is part of systemd. - Copyright 2010 Lennart Poettering + Copyright 2011 Lennart Poettering systemd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -134,7 +134,13 @@ static const char* fallback_icon_name(void) { /* We only list the really obvious cases here. The DMI data is unreliable enough, so let's not do any additional guesswork - on top of that. */ + on top of that. + + See the SMBIOS Specification 2.7.1 section 7.4.1 for + details about the values listed here: + + http://www.dmtf.org/sites/default/files/standards/documents/DSP0134_2.7.1.pdf + */ switch (t) { @@ -150,6 +156,7 @@ static const char* fallback_icon_name(void) { return "computer-laptop"; case 0x11: + case 0x1C: return "computer-server"; } |