4c402e7301
* disk/ata.c: Don't cast mod to void in GRUB_MOD_INIT to suppress warnings. It's no longer needed. * disk/host.c: Likewise. * disk/ata_pthru.c: Likewise. * disk/loopback.c: Likewise. * hook/datehook.c: Likewise. * parttool/pcpart.c: Likewise. * fs/i386/pc/pxe.c: Likewise. * fs/ntfscomp.c: Likewise. * efiemu/main.c: Likewise. * mmap/mmap.c: Likewise. * commands/crc.c: Likewise. * commands/hexdump.c: Likewise. * commands/hdparm.c: Likewise. * commands/acpi.c: Likewise. * commands/echo.c: Likewise. * commands/minicmd.c: Likewise. * commands/blocklist.c: Likewise. * commands/memrw.c: Likewise. * commands/loadenv.c: Likewise. * commands/usbtest.c: Likewise. * commands/lsmmap.c: Likewise. * commands/boot.c: Likewise. * commands/parttool.c: Likewise. * commands/configfile.c: Likewise. * commands/search.c: Likewise. * commands/ieee1275/suspend.c: Likewise. * commands/cat.c: Likewise. * commands/i386/pc/pxecmd.c: Likewise. * commands/i386/pc/play.c: Likewise. * commands/i386/pc/halt.c: Likewise. * commands/i386/pc/vbeinfo.c: Likewise. * commands/i386/pc/vbetest.c: Likewise. * commands/lspci.c: Likewise. * commands/date.c: Likewise. * commands/handler.c: Likewise. * commands/ls.c: Likewise. * commands/test.c: Likewise. * commands/cmp.c: Likewise. * commands/efi/loadbios.c: Likewise. * commands/efi/fixvideo.c: Likewise. * commands/halt.c: Likewise. * commands/help.c: Likewise. * commands/reboot.c: Likewise. * hello/hello.c: Likewise. * script/sh/main.c: Likewise. * loader/xnu.c: Likewise. * term/terminfo.c: Likewise. * term/i386/pc/serial.c: Likewise. * term/usb_keyboard.c: Likewise.
105 lines
2.5 KiB
C
105 lines
2.5 KiB
C
/* datehook.c - Module to install datetime hooks. */
|
|
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2008 Free Software Foundation, Inc.
|
|
*
|
|
* GRUB 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* GRUB 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 GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <grub/types.h>
|
|
#include <grub/dl.h>
|
|
#include <grub/env.h>
|
|
#include <grub/misc.h>
|
|
#include <grub/normal.h>
|
|
#include <grub/datetime.h>
|
|
|
|
static char *grub_datetime_names[] =
|
|
{
|
|
"YEAR",
|
|
"MONTH",
|
|
"DAY",
|
|
"HOUR",
|
|
"MINUTE",
|
|
"SECOND",
|
|
"WEEKDAY",
|
|
};
|
|
|
|
static char *
|
|
grub_read_hook_datetime (struct grub_env_var *var,
|
|
const char *val __attribute__ ((unused)))
|
|
{
|
|
struct grub_datetime datetime;
|
|
static char buf[6];
|
|
|
|
buf[0] = 0;
|
|
if (! grub_get_datetime (&datetime))
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < 7; i++)
|
|
if (! grub_strcmp (var->name, grub_datetime_names[i]))
|
|
{
|
|
int n;
|
|
|
|
switch (i)
|
|
{
|
|
case 0:
|
|
n = datetime.year;
|
|
break;
|
|
case 1:
|
|
n = datetime.month;
|
|
break;
|
|
case 2:
|
|
n = datetime.day;
|
|
break;
|
|
case 3:
|
|
n = datetime.hour;
|
|
break;
|
|
case 4:
|
|
n = datetime.minute;
|
|
break;
|
|
case 5:
|
|
n = datetime.second;
|
|
break;
|
|
default:
|
|
return grub_get_weekday_name (&datetime);
|
|
}
|
|
|
|
grub_sprintf (buf, "%d", n);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return buf;
|
|
}
|
|
|
|
GRUB_MOD_INIT(datetime)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < 7; i++)
|
|
grub_register_variable_hook (grub_datetime_names[i],
|
|
grub_read_hook_datetime, 0);
|
|
}
|
|
|
|
GRUB_MOD_FINI(datetime)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < 7; i++)
|
|
{
|
|
grub_register_variable_hook (grub_datetime_names[i], 0, 0);
|
|
grub_env_unset (grub_datetime_names[i]);
|
|
}
|
|
}
|