diff options
author | Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org> | 2016-01-31 15:39:20 +0100 |
---|---|---|
committer | Hans Rosenfeld <hans.rosenfeld@nexenta.com> | 2016-03-16 17:57:15 +0100 |
commit | 9890706ed36aa6bfca8ad283fbe4dac12ecd692b (patch) | |
tree | 048351ded0c77af8d77d1fca216a020f4aa415e7 /usr/src/cmd/boot/installgrub/installgrub.h | |
parent | 621be8d08fd45483b5ca1cb8e2e88239f1502b4d (diff) | |
download | illumos-joyent-9890706ed36aa6bfca8ad283fbe4dac12ecd692b.tar.gz |
6593 want LBA48 support in grub
Reviewed by: Josef 'Jeff' Sipek <josef.sipek@nexenta.com>
Reviewed by: Dan McDonald <danmcd@omniti.com>
Reviewed by: Toomas Soome <tsoome@me.com>
Approved by: Robert Mustacchi <rm@joyent.com>
Diffstat (limited to 'usr/src/cmd/boot/installgrub/installgrub.h')
-rw-r--r-- | usr/src/cmd/boot/installgrub/installgrub.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/cmd/boot/installgrub/installgrub.h b/usr/src/cmd/boot/installgrub/installgrub.h index cf3f4f5a92..1608cb6398 100644 --- a/usr/src/cmd/boot/installgrub/installgrub.h +++ b/usr/src/cmd/boot/installgrub/installgrub.h @@ -20,7 +20,7 @@ */ /* * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. - * Copyright 2015 Nexenta Systems, Inc. All rights reserved. + * Copyright 2016 Nexenta Systems, Inc. All rights reserved. */ #ifndef _INSTALLGRUB_H @@ -43,7 +43,7 @@ typedef struct _device_data { int disk_fd; int slice; int partition; - uint32_t start_sector; + uint64_t start_sector; char boot_sector[SECTOR_SIZE]; } ig_device_t; |