diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-04-04 15:39:44 +0000 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2007-04-04 15:39:44 +0000 |
commit | 42bc1b2fcc466cc4a31c5ee4b8c045ea45506336 (patch) | |
tree | e2d6f5c541329471e1fa5cdc9aa73391d74eb39b /hardinfo2/computer.c | |
parent | 71a591195618271973a12ae7ffaf288909481cbc (diff) |
Misc bugfixes, implement 'Boots'
Diffstat (limited to 'hardinfo2/computer.c')
-rw-r--r-- | hardinfo2/computer.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hardinfo2/computer.c b/hardinfo2/computer.c index 817282c0..cf20c6d6 100644 --- a/hardinfo2/computer.c +++ b/hardinfo2/computer.c @@ -101,6 +101,7 @@ static Computer *computer = NULL; #include <arch/this/nfs.h> #include <arch/this/net.h> #include <arch/common/users.h> +#include <arch/this/boots.h> gchar * hi_more_info(gchar * entry) @@ -162,6 +163,7 @@ void scan_modules(gboolean reload) void scan_boots(gboolean reload) { SCAN_START(); + scan_boots_real(); SCAN_END(); } @@ -284,7 +286,7 @@ gchar *callback_modules() gchar *callback_boots() { - return g_strdup("[Duh]\nNot implemented yet=\n"); + return g_strdup(computer->os->boots); } gchar *callback_locales() |