2003-01-17 02:52:05 +00:00
|
|
|
/* linux.c - boot Linux zImage or bzImage */
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* GRUB -- GRand Unified Bootloader
|
2008-01-05 12:14:05 +00:00
|
|
|
* Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2007,2008 Free Software Foundation, Inc.
|
2003-01-17 02:52:05 +00:00
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
2003-01-17 02:52:05 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-21 23:32:33 +00:00
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
2003-01-17 02:52:05 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
2007-07-21 23:32:33 +00:00
|
|
|
* GRUB is distributed in the hope that it will be useful,
|
2003-01-17 02:52:05 +00:00
|
|
|
* 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
|
2007-07-21 23:32:33 +00:00
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
2003-01-17 02:52:05 +00:00
|
|
|
*/
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
#include <grub/loader.h>
|
|
|
|
#include <grub/machine/loader.h>
|
|
|
|
#include <grub/file.h>
|
|
|
|
#include <grub/err.h>
|
|
|
|
#include <grub/device.h>
|
|
|
|
#include <grub/disk.h>
|
|
|
|
#include <grub/misc.h>
|
|
|
|
#include <grub/types.h>
|
|
|
|
#include <grub/machine/init.h>
|
|
|
|
#include <grub/machine/memory.h>
|
|
|
|
#include <grub/rescue.h>
|
|
|
|
#include <grub/dl.h>
|
2006-05-14 21:16:20 +00:00
|
|
|
#include <grub/cpu/linux.h>
|
2004-04-04 13:46:03 +00:00
|
|
|
|
|
|
|
static grub_dl_t my_mod;
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
static grub_size_t linux_mem_size;
|
2003-01-17 02:52:05 +00:00
|
|
|
static int loaded;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
static grub_err_t
|
|
|
|
grub_linux_unload (void)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_dl_unref (my_mod);
|
2003-01-17 02:52:05 +00:00
|
|
|
loaded = 0;
|
2004-04-04 13:46:03 +00:00
|
|
|
return GRUB_ERR_NONE;
|
2003-01-17 02:52:05 +00:00
|
|
|
}
|
|
|
|
|
2003-01-20 04:13:46 +00:00
|
|
|
void
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_rescue_cmd_linux (int argc, char *argv[])
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_file_t file = 0;
|
2003-01-17 02:52:05 +00:00
|
|
|
struct linux_kernel_header lh;
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_uint8_t setup_sects;
|
|
|
|
grub_size_t real_size, prot_size;
|
|
|
|
grub_ssize_t len;
|
2003-01-17 02:52:05 +00:00
|
|
|
int i;
|
|
|
|
char *dest;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_dl_ref (my_mod);
|
2003-01-17 02:52:05 +00:00
|
|
|
|
|
|
|
if (argc == 0)
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_ARGUMENT, "no kernel specified");
|
2003-01-17 02:52:05 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
file = grub_file_open (argv[0]);
|
2003-01-17 02:52:05 +00:00
|
|
|
if (! file)
|
|
|
|
goto fail;
|
|
|
|
|
2006-04-20 02:33:44 +00:00
|
|
|
if ((grub_size_t) grub_file_size (file) > grub_os_area_size)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2006-04-20 02:33:44 +00:00
|
|
|
grub_error (GRUB_ERR_OUT_OF_RANGE, "too big kernel (0x%x > 0x%x)",
|
|
|
|
(grub_size_t) grub_file_size (file),
|
|
|
|
grub_os_area_size);
|
2003-01-17 02:52:05 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_file_read (file, (char *) &lh, sizeof (lh)) != sizeof (lh))
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_READ_ERROR, "cannot read the linux header");
|
2003-01-17 02:52:05 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (lh.boot_flag != grub_cpu_to_le16 (0xaa55))
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_OS, "invalid magic number");
|
2003-01-17 02:52:05 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (lh.setup_sects > GRUB_LINUX_MAX_SETUP_SECTS)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_OS, "too many setup sectors");
|
2003-01-17 02:52:05 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2008-01-05 12:14:05 +00:00
|
|
|
grub_linux_is_bzimage = 0;
|
2003-01-17 02:52:05 +00:00
|
|
|
setup_sects = lh.setup_sects;
|
|
|
|
linux_mem_size = 0;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (lh.header == grub_cpu_to_le32 (GRUB_LINUX_MAGIC_SIGNATURE)
|
|
|
|
&& grub_le_to_cpu16 (lh.version) >= 0x0200)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2008-01-05 12:14:05 +00:00
|
|
|
grub_linux_is_bzimage = (lh.loadflags & GRUB_LINUX_FLAG_BIG_KERNEL);
|
2004-04-04 13:46:03 +00:00
|
|
|
lh.type_of_loader = GRUB_LINUX_BOOT_LOADER_TYPE;
|
2003-01-17 02:52:05 +00:00
|
|
|
|
|
|
|
/* Put the real mode part at as a high location as possible. */
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_linux_real_addr = (char *) (grub_lower_mem
|
|
|
|
- GRUB_LINUX_SETUP_MOVE_SIZE);
|
2003-01-17 02:52:05 +00:00
|
|
|
/* But it must not exceed the traditional area. */
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_linux_real_addr > (char *) GRUB_LINUX_OLD_REAL_MODE_ADDR)
|
|
|
|
grub_linux_real_addr = (char *) GRUB_LINUX_OLD_REAL_MODE_ADDR;
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_le_to_cpu16 (lh.version) >= 0x0201)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
lh.heap_end_ptr = grub_cpu_to_le16 (GRUB_LINUX_HEAP_END_OFFSET);
|
|
|
|
lh.loadflags |= GRUB_LINUX_FLAG_CAN_USE_HEAP;
|
2003-01-17 02:52:05 +00:00
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_le_to_cpu16 (lh.version) >= 0x0202)
|
|
|
|
lh.cmd_line_ptr = grub_linux_real_addr + GRUB_LINUX_CL_OFFSET;
|
2003-01-17 02:52:05 +00:00
|
|
|
else
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
lh.cl_magic = grub_cpu_to_le16 (GRUB_LINUX_CL_MAGIC);
|
|
|
|
lh.cl_offset = grub_cpu_to_le16 (GRUB_LINUX_CL_OFFSET);
|
|
|
|
lh.setup_move_size = grub_cpu_to_le16 (GRUB_LINUX_SETUP_MOVE_SIZE);
|
2003-01-17 02:52:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Your kernel is quite old... */
|
2004-04-04 13:46:03 +00:00
|
|
|
lh.cl_magic = grub_cpu_to_le16 (GRUB_LINUX_CL_MAGIC);
|
|
|
|
lh.cl_offset = grub_cpu_to_le16 (GRUB_LINUX_CL_OFFSET);
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
setup_sects = GRUB_LINUX_DEFAULT_SETUP_SECTS;
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_linux_real_addr = (char *) GRUB_LINUX_OLD_REAL_MODE_ADDR;
|
2003-01-17 02:52:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If SETUP_SECTS is not set, set it to the default (4). */
|
|
|
|
if (! setup_sects)
|
2004-04-04 13:46:03 +00:00
|
|
|
setup_sects = GRUB_LINUX_DEFAULT_SETUP_SECTS;
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
real_size = setup_sects << GRUB_DISK_SECTOR_BITS;
|
|
|
|
prot_size = grub_file_size (file) - real_size - GRUB_DISK_SECTOR_SIZE;
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_linux_tmp_addr = (char *) GRUB_LINUX_BZIMAGE_ADDR + prot_size;
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2008-01-05 12:14:05 +00:00
|
|
|
if (! grub_linux_is_bzimage
|
2004-04-04 13:46:03 +00:00
|
|
|
&& prot_size > (grub_size_t) (grub_linux_real_addr
|
|
|
|
- (char *) GRUB_LINUX_ZIMAGE_ADDR))
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_OS, "too big zImage, use bzImage instead");
|
2003-01-17 02:52:05 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_linux_real_addr + GRUB_LINUX_SETUP_MOVE_SIZE
|
|
|
|
> (char *) grub_lower_mem)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2007-10-05 11:02:40 +00:00
|
|
|
grub_error (GRUB_ERR_OUT_OF_RANGE,
|
|
|
|
"too small lower memory (0x%x > 0x%x)",
|
|
|
|
grub_linux_real_addr + GRUB_LINUX_SETUP_MOVE_SIZE,
|
|
|
|
(char *) grub_lower_mem);
|
2003-01-17 02:52:05 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_printf (" [Linux-%s, setup=0x%x, size=0x%x]\n",
|
2008-01-05 12:14:05 +00:00
|
|
|
grub_linux_is_bzimage ? "bzImage" : "zImage", real_size, prot_size);
|
2003-01-17 02:52:05 +00:00
|
|
|
|
|
|
|
for (i = 1; i < argc; i++)
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_memcmp (argv[i], "vga=", 4) == 0)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
|
|
|
/* Video mode selection support. */
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_uint16_t vid_mode;
|
2003-01-17 02:52:05 +00:00
|
|
|
char *val = argv[i] + 4;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_strcmp (val, "normal") == 0)
|
|
|
|
vid_mode = GRUB_LINUX_VID_MODE_NORMAL;
|
|
|
|
else if (grub_strcmp (val, "ext") == 0)
|
|
|
|
vid_mode = GRUB_LINUX_VID_MODE_EXTENDED;
|
|
|
|
else if (grub_strcmp (val, "ask") == 0)
|
|
|
|
vid_mode = GRUB_LINUX_VID_MODE_ASK;
|
2003-01-17 02:52:05 +00:00
|
|
|
else
|
2004-04-04 13:46:03 +00:00
|
|
|
vid_mode = (grub_uint16_t) grub_strtoul (val, 0, 0);
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_errno)
|
2003-01-17 02:52:05 +00:00
|
|
|
goto fail;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
lh.vid_mode = grub_cpu_to_le16 (vid_mode);
|
2003-01-17 02:52:05 +00:00
|
|
|
}
|
2004-04-04 13:46:03 +00:00
|
|
|
else if (grub_memcmp (argv[i], "mem=", 4) == 0)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
|
|
|
char *val = argv[i] + 4;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
linux_mem_size = grub_strtoul (val, &val, 0);
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_errno)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_errno = GRUB_ERR_NONE;
|
2003-01-17 02:52:05 +00:00
|
|
|
linux_mem_size = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int shift = 0;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
switch (grub_tolower (val[0]))
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
|
|
|
case 'g':
|
|
|
|
shift += 10;
|
|
|
|
case 'm':
|
|
|
|
shift += 10;
|
|
|
|
case 'k':
|
|
|
|
shift += 10;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check an overflow. */
|
|
|
|
if (linux_mem_size > (~0UL >> shift))
|
|
|
|
linux_mem_size = 0;
|
|
|
|
else
|
|
|
|
linux_mem_size <<= shift;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Put the real mode code at the temporary address. */
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_memmove (grub_linux_tmp_addr, &lh, sizeof (lh));
|
2004-02-15 10:09:11 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
len = real_size + GRUB_DISK_SECTOR_SIZE - sizeof (lh);
|
|
|
|
if (grub_file_read (file, grub_linux_tmp_addr + sizeof (lh), len) != len)
|
2004-02-15 10:09:11 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_FILE_READ_ERROR, "Couldn't read file");
|
2004-02-15 10:09:11 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (lh.header != grub_cpu_to_le32 (GRUB_LINUX_MAGIC_SIGNATURE)
|
|
|
|
|| grub_le_to_cpu16 (lh.version) < 0x0200)
|
2003-01-17 02:52:05 +00:00
|
|
|
/* Clear the heap space. */
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_memset (grub_linux_tmp_addr
|
|
|
|
+ ((setup_sects + 1) << GRUB_DISK_SECTOR_BITS),
|
2003-01-17 02:52:05 +00:00
|
|
|
0,
|
2004-04-04 13:46:03 +00:00
|
|
|
((GRUB_LINUX_MAX_SETUP_SECTS - setup_sects - 1)
|
|
|
|
<< GRUB_DISK_SECTOR_BITS));
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2005-08-20 08:25:51 +00:00
|
|
|
/* Specify the boot file. */
|
|
|
|
dest = grub_stpcpy (grub_linux_tmp_addr + GRUB_LINUX_CL_OFFSET,
|
|
|
|
"BOOT_IMAGE=");
|
|
|
|
dest = grub_stpcpy (dest, argv[0]);
|
|
|
|
|
2003-01-17 02:52:05 +00:00
|
|
|
/* Copy kernel parameters. */
|
2005-08-20 08:25:51 +00:00
|
|
|
for (i = 1;
|
2003-01-17 02:52:05 +00:00
|
|
|
i < argc
|
2005-08-20 08:25:51 +00:00
|
|
|
&& dest + grub_strlen (argv[i]) + 1 < (grub_linux_tmp_addr
|
|
|
|
+ GRUB_LINUX_CL_END_OFFSET);
|
|
|
|
i++)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2005-08-20 08:25:51 +00:00
|
|
|
*dest++ = ' ';
|
|
|
|
dest = grub_stpcpy (dest, argv[i]);
|
2003-01-17 02:52:05 +00:00
|
|
|
}
|
|
|
|
|
2004-02-15 10:09:11 +00:00
|
|
|
len = prot_size;
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_file_read (file, (char *) GRUB_LINUX_BZIMAGE_ADDR, len) != len)
|
|
|
|
grub_error (GRUB_ERR_FILE_READ_ERROR, "Couldn't read file");
|
2004-02-15 10:09:11 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_errno == GRUB_ERR_NONE)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_linux_prot_size = prot_size;
|
2006-04-30 21:09:37 +00:00
|
|
|
grub_loader_set (grub_linux_boot, grub_linux_unload, 1);
|
2003-01-17 02:52:05 +00:00
|
|
|
loaded = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
|
|
|
if (file)
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_file_close (file);
|
2003-01-17 02:52:05 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_errno != GRUB_ERR_NONE)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_dl_unref (my_mod);
|
2003-01-17 02:52:05 +00:00
|
|
|
loaded = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-20 04:13:46 +00:00
|
|
|
void
|
2004-09-17 09:36:52 +00:00
|
|
|
grub_rescue_cmd_initrd (int argc, char *argv[])
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_file_t file = 0;
|
|
|
|
grub_ssize_t size;
|
|
|
|
grub_addr_t addr_max, addr_min, addr;
|
2004-02-15 10:09:11 +00:00
|
|
|
struct linux_kernel_header *lh;
|
|
|
|
|
|
|
|
if (argc == 0)
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_ARGUMENT, "No module specified");
|
2004-02-15 10:09:11 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!loaded)
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_ARGUMENT, "You need to load the kernel first.");
|
2004-02-15 10:09:11 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
lh = (struct linux_kernel_header *) grub_linux_tmp_addr;
|
2004-02-15 10:09:11 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (!(lh->header == grub_cpu_to_le32 (GRUB_LINUX_MAGIC_SIGNATURE)
|
|
|
|
&& grub_le_to_cpu16 (lh->version) >= 0x0200))
|
2004-02-15 10:09:11 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_BAD_OS, "The kernel is too old for initrd.");
|
2004-02-15 10:09:11 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the highest address available for the initrd. */
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_le_to_cpu16 (lh->version) >= 0x0203)
|
2006-06-08 22:30:25 +00:00
|
|
|
{
|
|
|
|
addr_max = grub_cpu_to_le32 (lh->initrd_addr_max);
|
|
|
|
|
|
|
|
/* XXX in reality, Linux specifies a bogus value, so
|
|
|
|
it is necessary to make sure that ADDR_MAX does not exceed
|
|
|
|
0x3fffffff. */
|
|
|
|
if (addr_max > GRUB_LINUX_INITRD_MAX_ADDRESS)
|
|
|
|
addr_max = GRUB_LINUX_INITRD_MAX_ADDRESS;
|
|
|
|
}
|
2004-02-15 10:09:11 +00:00
|
|
|
else
|
2004-04-04 13:46:03 +00:00
|
|
|
addr_max = GRUB_LINUX_INITRD_MAX_ADDRESS;
|
2004-02-15 10:09:11 +00:00
|
|
|
|
2006-06-05 19:59:33 +00:00
|
|
|
if (linux_mem_size != 0 && linux_mem_size < addr_max)
|
2004-02-15 10:09:11 +00:00
|
|
|
addr_max = linux_mem_size;
|
|
|
|
|
|
|
|
/* Linux 2.3.xx has a bug in the memory range check, so avoid
|
|
|
|
the last page.
|
|
|
|
Linux 2.2.xx has a bug in the memory range check, which is
|
|
|
|
worse than that of Linux 2.3.xx, so avoid the last 64kb. */
|
|
|
|
addr_max -= 0x10000;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (addr_max > grub_os_area_addr + grub_os_area_size)
|
|
|
|
addr_max = grub_os_area_addr + grub_os_area_size;
|
2004-02-15 10:09:11 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
addr_min = (grub_addr_t) grub_linux_tmp_addr + GRUB_LINUX_CL_END_OFFSET;
|
2004-02-15 10:09:11 +00:00
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
file = grub_file_open (argv[0]);
|
2004-02-15 10:09:11 +00:00
|
|
|
if (!file)
|
|
|
|
goto fail;
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
size = grub_file_size (file);
|
2004-02-15 10:09:11 +00:00
|
|
|
|
|
|
|
/* Put the initrd as high as possible, 4Ki aligned. */
|
|
|
|
addr = (addr_max - size) & ~0xFFF;
|
|
|
|
|
|
|
|
if (addr < addr_min)
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_OUT_OF_RANGE, "The initrd is too big");
|
2004-02-15 10:09:11 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
if (grub_file_read (file, (void *)addr, size) != size)
|
2004-02-15 10:09:11 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_error (GRUB_ERR_FILE_READ_ERROR, "Couldn't read file");
|
2004-02-15 10:09:11 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
lh->ramdisk_image = addr;
|
|
|
|
lh->ramdisk_size = size;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
if (file)
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_file_close (file);
|
2003-01-17 02:52:05 +00:00
|
|
|
}
|
|
|
|
|
2004-02-15 10:09:11 +00:00
|
|
|
|
2005-11-13 Marco Gerards <mgerards@xs4all.nl>
* geninit.sh: New file.
* geninitheader.sh: Likewise.
* commands/boot.c (grub_boot_init, grub_boot_fini): Removed.
* commands/cat.c (grub_cat_init, grub_cat_fini): Likewise.
* commands/cmp.c (grub_cmp_init, grub_cmp_fini): Likewise.
* commands/configfile.c (grub_configfile_init)
(grub_configfile_fini): Likewise.
* commands/default.c (grub_default_init, grub_default_fini):
Likewise.
* commands/help.c (grub_help_init, grub_help_fini): Likewise.
* commands/ls.c (grub_ls_init, grub_ls_fini): Likewise.
* commands/search.c (grub_search_init, grub_search_fini): Likewise.
* commands/terminal.c (grub_terminal_init, grub_terminal_fini):
Likewise.
* commands/test.c (grub_test_init, grub_test_fini): Likewise.
* commands/timeout.c (grub_timeout_init, grub_timeout_fini):
Likewise.
* commands/i386/pc/halt.c (grub_halt_init, grub_halt_fini): Likewise.
* commands/iee1275/halt.c (grub_halt_init, grub_halt_fini):
Likewise.
* commands/i386/pc/reboot.c (grub_reboot_init, grub_reboot_fini):
Likewise.
* commands/iee1275/reboot.c (grub_reboot_init, grub_reboot_fini):
Likewise.
* disk/loopback.c (grub_loop_init, grub_loop_fini): Likewise.
* fs/affs.c (grub_affs_init, grub_affs_fini): Likewise.
* fs/ext2.c (grub_ext2_init, grub_ext2_fini): Likewise.
* fs/fat.c (grub_fat_init, grub_fat_fini): Likewise.
* fs/hfs.c (grub_hfs_init, grub_hfs_fini): Likewise.
* fs/iso9660.c (grub_iso9660_init, grub_iso9660_fini): Likewise.
* fs/jfs.c (grub_jfs_init, grub_jfs_fini): Likewise.
* fs/minix.c (grub_minix_init, grub_minix_fini): Likewise.
* fs/sfs.c (grub_sfs_init, grub_sfs_fini): Likewise.
* fs/ufs.c (grub_ufs_init, grub_ufs_fini): Likewise.
* fs/xfs.c (grub_xfs_init, grub_xfs_fini): Likewise.
* normal/main.c (grub_normal_init, grub_normal_fini): Likewise.
* partmap/amiga.c (grub_amiga_partition_map_init)
(grub_amiga_partition_map_fini): Likewise.
* partmap/apple.c (grub_apple_partition_map_init)
(grub_apple_partition_map_fini): Likewise.
* partmap/pc.c (grub_pc_partition_map_init)
(grub_pc_partition_map_fini): Likewise.
* partmap/sun.c (grub_sun_partition_map_init,
grub_sun_partition_map_fini): Likewise.
* term/terminfo.c (grub_terminal_init, grub_terminal_fini):
Likewise.
* util/grub-emu.c: Include <grub_modules_init.h>.
(main): Don't initialize and de-initialize any modules directly,
use `grub_init_all' and `grub_fini_all' instead.
* term/i386/pc/vesafb.c (grub_vesafb_init): Renamed to
`grub_vesafb_mod_init'.
(grub_vesafb_fini): Renamed to `grub_vesafb_mod_fini'. Updated
all users.
* term/i386/pc/vga.c (grub_vga_init): Renamed to
`grub_vga_mod_init'. Updated all users.
(grub_vga_fini): Renamed to `grub_vga_mod_fini'.
* conf/i386-pc.rmk (grub_emu_SOURCES): Add `grub_emu_init.c'.
(grub_modules_init.lst, grub_modules_init.h, grub_emu_init.c): New
rules.
* include/grub/dl.h (GRUB_MOD_INIT): Add argument `name'.
Generate a function to initialize the module in utilities.
Updated all callers.
(GRUB_MOD_FINI): Add argument `name'. Generate a function to
initialize the module in utilities. Updated all callers.
2005-11-13 15:47:09 +00:00
|
|
|
GRUB_MOD_INIT(linux)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_rescue_register_command ("linux",
|
|
|
|
grub_rescue_cmd_linux,
|
2003-01-17 02:52:05 +00:00
|
|
|
"load linux");
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_rescue_register_command ("initrd",
|
|
|
|
grub_rescue_cmd_initrd,
|
2003-01-17 02:52:05 +00:00
|
|
|
"load initrd");
|
|
|
|
my_mod = mod;
|
|
|
|
}
|
|
|
|
|
2005-11-13 Marco Gerards <mgerards@xs4all.nl>
* geninit.sh: New file.
* geninitheader.sh: Likewise.
* commands/boot.c (grub_boot_init, grub_boot_fini): Removed.
* commands/cat.c (grub_cat_init, grub_cat_fini): Likewise.
* commands/cmp.c (grub_cmp_init, grub_cmp_fini): Likewise.
* commands/configfile.c (grub_configfile_init)
(grub_configfile_fini): Likewise.
* commands/default.c (grub_default_init, grub_default_fini):
Likewise.
* commands/help.c (grub_help_init, grub_help_fini): Likewise.
* commands/ls.c (grub_ls_init, grub_ls_fini): Likewise.
* commands/search.c (grub_search_init, grub_search_fini): Likewise.
* commands/terminal.c (grub_terminal_init, grub_terminal_fini):
Likewise.
* commands/test.c (grub_test_init, grub_test_fini): Likewise.
* commands/timeout.c (grub_timeout_init, grub_timeout_fini):
Likewise.
* commands/i386/pc/halt.c (grub_halt_init, grub_halt_fini): Likewise.
* commands/iee1275/halt.c (grub_halt_init, grub_halt_fini):
Likewise.
* commands/i386/pc/reboot.c (grub_reboot_init, grub_reboot_fini):
Likewise.
* commands/iee1275/reboot.c (grub_reboot_init, grub_reboot_fini):
Likewise.
* disk/loopback.c (grub_loop_init, grub_loop_fini): Likewise.
* fs/affs.c (grub_affs_init, grub_affs_fini): Likewise.
* fs/ext2.c (grub_ext2_init, grub_ext2_fini): Likewise.
* fs/fat.c (grub_fat_init, grub_fat_fini): Likewise.
* fs/hfs.c (grub_hfs_init, grub_hfs_fini): Likewise.
* fs/iso9660.c (grub_iso9660_init, grub_iso9660_fini): Likewise.
* fs/jfs.c (grub_jfs_init, grub_jfs_fini): Likewise.
* fs/minix.c (grub_minix_init, grub_minix_fini): Likewise.
* fs/sfs.c (grub_sfs_init, grub_sfs_fini): Likewise.
* fs/ufs.c (grub_ufs_init, grub_ufs_fini): Likewise.
* fs/xfs.c (grub_xfs_init, grub_xfs_fini): Likewise.
* normal/main.c (grub_normal_init, grub_normal_fini): Likewise.
* partmap/amiga.c (grub_amiga_partition_map_init)
(grub_amiga_partition_map_fini): Likewise.
* partmap/apple.c (grub_apple_partition_map_init)
(grub_apple_partition_map_fini): Likewise.
* partmap/pc.c (grub_pc_partition_map_init)
(grub_pc_partition_map_fini): Likewise.
* partmap/sun.c (grub_sun_partition_map_init,
grub_sun_partition_map_fini): Likewise.
* term/terminfo.c (grub_terminal_init, grub_terminal_fini):
Likewise.
* util/grub-emu.c: Include <grub_modules_init.h>.
(main): Don't initialize and de-initialize any modules directly,
use `grub_init_all' and `grub_fini_all' instead.
* term/i386/pc/vesafb.c (grub_vesafb_init): Renamed to
`grub_vesafb_mod_init'.
(grub_vesafb_fini): Renamed to `grub_vesafb_mod_fini'. Updated
all users.
* term/i386/pc/vga.c (grub_vga_init): Renamed to
`grub_vga_mod_init'. Updated all users.
(grub_vga_fini): Renamed to `grub_vga_mod_fini'.
* conf/i386-pc.rmk (grub_emu_SOURCES): Add `grub_emu_init.c'.
(grub_modules_init.lst, grub_modules_init.h, grub_emu_init.c): New
rules.
* include/grub/dl.h (GRUB_MOD_INIT): Add argument `name'.
Generate a function to initialize the module in utilities.
Updated all callers.
(GRUB_MOD_FINI): Add argument `name'. Generate a function to
initialize the module in utilities. Updated all callers.
2005-11-13 15:47:09 +00:00
|
|
|
GRUB_MOD_FINI(linux)
|
2003-01-17 02:52:05 +00:00
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_rescue_unregister_command ("linux");
|
|
|
|
grub_rescue_unregister_command ("initrd");
|
2003-01-17 02:52:05 +00:00
|
|
|
}
|