aboutsummaryrefslogtreecommitdiffstats
path: root/roms/openbios/include/packages
diff options
context:
space:
mode:
authorAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
committerAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
commitaf1a266670d040d2f4083ff309d732d648afba2a (patch)
tree2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/openbios/include/packages
parente02cda008591317b1625707ff8e115a4841aa889 (diff)
Add submodule dependency filesHEADmaster
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/openbios/include/packages')
-rw-r--r--roms/openbios/include/packages/nvram.h26
-rw-r--r--roms/openbios/include/packages/video.h7
2 files changed, 33 insertions, 0 deletions
diff --git a/roms/openbios/include/packages/nvram.h b/roms/openbios/include/packages/nvram.h
new file mode 100644
index 000000000..7803814b3
--- /dev/null
+++ b/roms/openbios/include/packages/nvram.h
@@ -0,0 +1,26 @@
+/*
+ * Creation Date: <2003/12/20 01:04:25 samuel>
+ * Time-stamp: <2004/01/07 19:59:11 samuel>
+ *
+ * <nvram.h>
+ *
+ * arch NVRAM interface
+ *
+ * Copyright (C) 2003, 2004 Samuel Rydh (samuel@ibrium.se)
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * version 2
+ *
+ */
+
+#ifndef _H_NVRAM_PACKAGE
+#define _H_NVRAM_PACKAGE
+
+#include "kernel/stack.h"
+
+extern void nvconf_init( void );
+extern phandle_t nvram_init( const char *path );
+extern void update_nvram( void );
+
+#endif /* _H_NVRAM_PACKAGE */
diff --git a/roms/openbios/include/packages/video.h b/roms/openbios/include/packages/video.h
new file mode 100644
index 000000000..2b7f41248
--- /dev/null
+++ b/roms/openbios/include/packages/video.h
@@ -0,0 +1,7 @@
+#ifndef VIDEO_SUBR_H
+#define VIDEO_SUBR_H
+
+/* packages/video.c */
+void molvideo_init(void);
+
+#endif /* VIDEO_SUBR_H */