summaryrefslogtreecommitdiff
path: root/host/arch/stub/lib/crossystem_arch.c
blob: 4a71dddc1571fcc910bb8f44afec6b33cb3407a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* Copyright (c) 2020 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "crossystem_arch.h"
#include "crossystem.h"
#include "crossystem_vbnv.h"
#include "host_common.h"
#include "vboot_struct.h"

int vb2_read_nv_storage(struct vb2_context *ctx)
{
	return -1;
}


int vb2_write_nv_storage(struct vb2_context *ctx)
{
	return -1;
}

VbSharedDataHeader* VbSharedDataRead(void)
{
	return NULL;
}

int VbGetArchPropertyInt(const char* name)
{
	return -1;
}


const char* VbGetArchPropertyString(const char* name, char* dest,
				    size_t size)
{
	return NULL;
}


int VbSetArchPropertyInt(const char* name, int value)
{
	return -1;
}

int VbSetArchPropertyString(const char* name, const char* value)
{
	return -1;
}