summaryrefslogtreecommitdiffstats
path: root/discover/platform-powerpc.c
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2014-03-10 12:11:00 +0800
committerJeremy Kerr <jk@ozlabs.org>2014-03-14 15:14:26 +0800
commitbb3ddd63720501f451d3f2797f315c25efd3bd4a (patch)
treeb6c1d915e22123dbccec7b1f61948f5a2c63977a /discover/platform-powerpc.c
parent30a68ef1ba00b24f50efef4f22c426396176462d (diff)
downloadtalos-petitboot-bb3ddd63720501f451d3f2797f315c25efd3bd4a.tar.gz
talos-petitboot-bb3ddd63720501f451d3f2797f315c25efd3bd4a.zip
discover/powerpc: Invalidate next bootdev after reading
The next-bootdev sysparam should only apply for the next boot, so invalidate it after reading. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'discover/platform-powerpc.c')
-rw-r--r--discover/platform-powerpc.c49
1 files changed, 46 insertions, 3 deletions
diff --git a/discover/platform-powerpc.c b/discover/platform-powerpc.c
index 1e7c828..d1d4191 100644
--- a/discover/platform-powerpc.c
+++ b/discover/platform-powerpc.c
@@ -3,6 +3,7 @@
#include <string.h>
#include <stdlib.h>
#include <limits.h>
+#include <errno.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/fcntl.h>
@@ -573,6 +574,46 @@ static int read_bootdev_sysparam(const char *name, uint8_t *val)
return 0;
}
+static int write_bootdev_sysparam(const char *name, uint8_t val)
+{
+ char path[50];
+ int fd, rc;
+
+ strcpy(path, sysparams_dir);
+ assert(strlen(name) < sizeof(path) - strlen(path));
+ strcat(path, name);
+
+ fd = open(path, O_WRONLY);
+ if (fd < 0) {
+ pb_debug("powerpc: can't access sysparam %s for writing\n",
+ name);
+ return -1;
+ }
+
+ for (;;) {
+ errno = 0;
+ rc = write(fd, &val, sizeof(val));
+ if (rc == sizeof(val)) {
+ rc = 0;
+ break;
+ }
+
+ if (rc <= 0 && errno != EINTR) {
+ pb_log("powerpc: error updating sysparam %s: %s",
+ name, strerror(errno));
+ rc = -1;
+ break;
+ }
+ }
+
+ close(fd);
+
+ if (!rc)
+ pb_debug("powerpc: set sysparam %s: 0x%02x\n", name, val);
+
+ return rc;
+}
+
static void parse_opal_sysparams(struct config *config)
{
uint8_t next_bootdev, default_bootdev;
@@ -589,10 +630,12 @@ static void parse_opal_sysparams(struct config *config)
if (!next_valid && !default_valid)
return;
- if (!next_valid)
+ if (next_valid) {
+ /* invalidate next-boot-device setting */
+ write_bootdev_sysparam("next-boot-device", 0xff);
+ } else {
next_bootdev = default_bootdev;
-
- /* todo: copy default to next */
+ }
switch (next_bootdev) {
case IPMI_BOOTDEV_NONE:
OpenPOWER on IntegriCloud