git: 9front

Download patch

ref: a7c52a946729ba66f332a820c475d811e20e6e31
parent: 99cedf3345eec83ca19c83b15bbf7404ce55eda7
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Dec 2 02:35:25 EST 2019

kernel: add missing FPillegal definition for kw and omap kernels

--- a/sys/src/9/kw/dat.h
+++ b/sys/src/9/kw/dat.h
@@ -72,6 +72,8 @@
 	FPinit,
 	FPactive,
 	FPinactive,
+
+	FPillegal= 0x100,
 };
 
 struct Confmem
--- a/sys/src/9/omap/dat.h
+++ b/sys/src/9/omap/dat.h
@@ -96,6 +96,8 @@
 	FPinit,
 	FPactive,
 	FPinactive,
+
+	FPillegal= 0x100,
 };
 
 struct Confmem
--