Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Jan 2019 21:09:44 +0000 (UTC)
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r343225 - head/stand/mips/beri/boot2
Message-ID:  <201901202109.x0KL9ioc038440@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gonzo
Date: Sun Jan 20 21:09:44 2019
New Revision: 343225
URL: https://svnweb.freebsd.org/changeset/base/343225

Log:
  Unbreak mip64 build after r328437
  
  Add exit and getchar functions to beri/boot2 code. They are required by
  panic_action functin introduced in r328437

Modified:
  head/stand/mips/beri/boot2/boot2.c

Modified: head/stand/mips/beri/boot2/boot2.c
==============================================================================
--- head/stand/mips/beri/boot2/boot2.c	Sun Jan 20 20:29:26 2019	(r343224)
+++ head/stand/mips/beri/boot2/boot2.c	Sun Jan 20 21:09:44 2019	(r343225)
@@ -651,3 +651,19 @@ xgetc(int fn)
 	    return 0;
     }
 }
+
+int
+getchar(void)
+{
+
+	return xgetc(0);
+}
+
+void
+exit(int code)
+{
+
+        printf("error: loader exit\n");
+        while (1);
+        __unreachable();
+}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901202109.x0KL9ioc038440>