753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore/*
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * CDDL HEADER START
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore *
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * The contents of this file are subject to the terms of the
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * Common Development and Distribution License (the "License").
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * You may not use this file except in compliance with the License.
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore *
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * or http://www.opensolaris.org/os/licensing.
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * See the License for the specific language governing permissions
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * and limitations under the License.
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore *
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * When distributing Covered Code, include this CDDL HEADER in each
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * If applicable, add the following below this CDDL HEADER, with the
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * fields enclosed by brackets "[]" replaced with your own identifying
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * information: Portions Copyright [yyyy] [name of copyright owner]
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore *
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * CDDL HEADER END
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore */
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore/*
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * Use is subject to license terms.
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore */
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#ifndef grub_errno_start
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#define grub_errno_start(num)
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#endif /* grub_errno_start */
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#ifndef grub_errno_def
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#define grub_errno_def(num, desc)
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#endif /* grub_errno_def */
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#ifndef grub_errno_end
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#define grub_errno_end(num)
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#endif /* grub_errno_end */
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore/*
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * !!! Should ALWAYS be the first one
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore */
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_start(EG_START = -10000)
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_INVALIDCMD, "Invalid GRUB command")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_INVALIDMENU, "Invalid GRUB menu")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_INVALIDENT, "Invalid GRUB entry")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_INVALIDLINE, "Invalid GRUB line")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_INVALIDBARG, "Invalid GRUB boot arguments")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_FINDROOTFMT, "Invalid format for findroot")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_FINDROOTPRT, "Invalid partition number for findroot")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_FINDROOTSLC, "Invalid slice number for findroot")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_UNKNOWNFS, "Unknown file system")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_NOTZFS, "File system is not ZFS")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_OPENZFS, "Failed to open ZFS file system")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_INITFS, "Initialize file system")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_MOUNTFS, "Failed to mount file system")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_OPENFILE, "Failed to open file")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_NOTUNIX, "Kernel file is not unix")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_NOTABSPATH, "Kernel path is not absolute")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_OPENKERNFILE, "Failed to open kernel file")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_OPENMNTTAB, "Failed to open mnttab")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_GETMNTTAB, "Failed to get mnttab")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_CURROOT, "Failed to get current root info")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_NUMTOOBIG, "Requested entry number is too big")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_NOENTRY, "No such entry found")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_XVMNOTSUP, "xVM is not supported")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_BOOTSIGN, "Bootsign not found")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_def(EG_UNKBOOTFS, "Unknown bootfs filesystem")
fda6624021ffe01adf1af44f72ae4fb3ba65c1e8Konstantin Ananyevgrub_errno_def(EG_ROOTNOTSUPP, "Selected GRUB menu entry contains "\
fda6624021ffe01adf1af44f72ae4fb3ba65c1e8Konstantin Ananyev "unsupported \"root\" command")
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore/*
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore * !!! Should ALWAYS be the last one
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore */
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Mooregrub_errno_end(EG_END)
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#undef grub_errno_start
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#undef grub_errno_def
753a6d457b330b1b29b2d3eefcd0831116ce950dSherry Moore#undef grub_errno_end