loader_efi.h (b3e7694832e81d7a904a10f525f8797b753bf0d3) loader_efi.h (f8ca5d45c3c1829759ecd87cb95d53e5ab7d0811)
1/*-
2 * Copyright (c) 2013 The FreeBSD Foundation
3 *
4 * This software was developed by Benno Rice under sponsorship from
5 * the FreeBSD Foundation.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 18 unchanged lines hidden (view full) ---

27
28#ifndef _LOADER_EFI_COPY_H_
29#define _LOADER_EFI_COPY_H_
30
31#include <stand.h>
32#include <readin.h>
33#include <efi.h>
34
1/*-
2 * Copyright (c) 2013 The FreeBSD Foundation
3 *
4 * This software was developed by Benno Rice under sponsorship from
5 * the FreeBSD Foundation.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 18 unchanged lines hidden (view full) ---

27
28#ifndef _LOADER_EFI_COPY_H_
29#define _LOADER_EFI_COPY_H_
30
31#include <stand.h>
32#include <readin.h>
33#include <efi.h>
34
35#ifdef __amd64__
35#if defined(__amd64__) || defined(__i386__)
36enum {
37 COPY_STAGING_ENABLE,
38 COPY_STAGING_DISABLE,
39 COPY_STAGING_AUTO,
40};
41extern int copy_staging;
42#endif
43

--- 15 unchanged lines hidden ---
36enum {
37 COPY_STAGING_ENABLE,
38 COPY_STAGING_DISABLE,
39 COPY_STAGING_AUTO,
40};
41extern int copy_staging;
42#endif
43

--- 15 unchanged lines hidden ---