/* $Id$ * $URL$ * * plugin for uname() syscall * * Copyright (C) 2003 Michael Reinelt * Copyright (C) 2004 The LCD4Linux Team * * This file is part of LCD4Linux. * * LCD4Linux is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * LCD4Linux is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ /* * exported functions: * * int plugin_init_uname (void) * adds uname() functions * */ #include "config.h" #include #include #include #include #include "debug.h" #include "plugin.h" static void my_uname(RESULT * result, RESULT * arg1) { struct utsname utsbuf; char *key, *value; key = R2S(arg1); if (uname(&utsbuf) != 0) { error("uname() failed: %s", strerror(errno)); SetResult(&result, R_STRING, ""); return; } if (strcasecmp(key, "sysname") == 0) { value = utsbuf.sysname; } else if (strcasecmp(key, "nodename") == 0) { value = utsbuf.nodename; } else if (strcasecmp(key, "release") == 0) { value = utsbuf.release; } else if (strcasecmp(key, "version") == 0) { value = utsbuf.version; } else if (strcasecmp(key, "machine") == 0) { value = utsbuf.machine; #if defined(_GNU_SOURCE) && ! defined(__APPLE__) } else if (strcasecmp(key, "domainname") == 0) { value = utsbuf.domainname; #endif } else { error("uname: unknown field '%s'", key); value = ""; } SetResult(&result, R_STRING, value); } int plugin_init_uname(void) { AddFunction("uname", 1, my_uname); return 0; } void plugin_exit_uname(void) { } ebian/dtv-scan-tables.git/stats/channels-conf/dvb-t/uk-Reigate?h=debian/0%2bgit20160503.4f192bd-1'>stats
AgeCommit message (Expand)AuthorFilesLines
2014-07-23New Upstream Snapshot (commit 14bd6c7)Jonathan McCrohan1-2/+3
2014-07-23Imported Upstream version 0+git20140611.14bd6c7upstream/0+git20140611.14bd6c7Jonathan McCrohan7-11/+60
2014-05-13New Upstream Snapshot (commit 1246b27)Jonathan McCrohan1-0/+6
2014-05-13Imported Upstream version 0+git20140512.1246b27upstream/0+git20140512.1246b27Jonathan McCrohan391-301/+3983
2014-04-05Release 0+git20140326.cfc2975-1debian/0+git20140326.cfc2975-1Jonathan McCrohan1-2/+2
2014-04-05d/control: update Homepage (upstream has moved from Gitweb to cgit)Jonathan McCrohan2-1/+2
2014-04-05New Upstream Snapshot (commit cfc2975)Jonathan McCrohan1-0/+6
2014-04-05Imported Upstream version 0+git20140326.cfc2975upstream/0+git20140326.cfc2975Jonathan McCrohan118-656/+877
2014-01-16Release 0+git20140107.1850cf8-1debian/0+git20140107.1850cf8-1Jonathan McCrohan1-2/+2
2014-01-16Update Standards Version to 3.9.5Jonathan McCrohan2-1/+9