common_nodist = grub_script.tab.h;
common = grub-core/commands/blocklist.c;
+ common = grub-core/commands/testload.c;
common = grub-core/commands/extcmd.c;
common = grub-core/commands/ls.c;
common = grub-core/disk/dmraid_nvidia.c;
CMD_CMP,
CMD_HEX,
CMD_CRC,
- CMD_BLOCKLIST
+ CMD_BLOCKLIST,
+ CMD_TESTLOAD
};
#define BUF_SIZE 32256
case CMD_BLOCKLIST:
execute_command ("blocklist", n, args);
grub_printf ("\n");
+ case CMD_TESTLOAD:
+ execute_command ("testload", n, args);
+ grub_printf ("\n");
}
for (i = 0; i < num_disks; i++)
cmd = CMD_BLOCKLIST;
nparm = 1;
}
+ else if (!grub_strcmp (arg, "testload"))
+ {
+ cmd = CMD_TESTLOAD;
+ nparm = 1;
+ }
else
{
fprintf (stderr, _("Invalid command %s.\n"), arg);