m8vem/p112: update to new core
authorAlan Cox <alan@linux.intel.com>
Sat, 29 Sep 2018 15:23:45 +0000 (16:23 +0100)
committerAlan Cox <alan@linux.intel.com>
Sat, 29 Sep 2018 15:23:45 +0000 (16:23 +0100)
Kernel/platform-mtx/Makefile
Kernel/platform-n8vem-mark4/config.h
Kernel/platform-n8vem-mark4/devtty.c
Kernel/platform-n8vem-mark4/devtty.h
Kernel/platform-p112/config.h
Kernel/platform-p112/devtty.c
Kernel/platform-p112/devtty.h

index 3bf371e..18447fe 100644 (file)
@@ -28,7 +28,7 @@ $(DOBJS): %.rel: ../dev/%.c
 
 
 clean:
-       rm -f $(OBJS) $(JUNK)  core *~ 
+       rm -f $(OBJS) $(JUNK)  core *~  fuzix.com
 
 image:
        cp ../fuzix.bin fuzix.com
index 27dbcea..6737bcc 100644 (file)
@@ -83,3 +83,5 @@
        /* ASCI0 as the console */
        #define TTYDEV   (512+1)  /* System console (used by kernel, init) */
 #endif
+
+#define platform_copyright()
\ No newline at end of file
index 7d723c8..c0c1cef 100644 (file)
@@ -23,7 +23,7 @@ struct  s_queue  ttyinq[NUM_DEV_TTY+1] = {       /* ttyinq[0] is never used */
 #endif
 };
 
-void tty_setup(uint8_t minor)
+void tty_setup(uint8_t minor, uint8_t flags)
 {
     minor;
 }
index 30f7020..12401d8 100644 (file)
@@ -1,6 +1,5 @@
 #ifndef __DEVTTY_DOT_H__
 #define __DEVTTY_DOT_H__
-void tty_putc(uint8_t minor, unsigned char c);
 void tty_pollirq_asci0(void);
 void tty_pollirq_asci1(void);
 
index 6dfb9ba..ea70664 100644 (file)
@@ -66,3 +66,5 @@
 
 /* We have the P112 floppy controller */
 #define CONFIG_P112_FLOPPY
+
+#define platform_copyright()
index 94e2b7c..e284ef8 100644 (file)
@@ -61,7 +61,7 @@ struct  s_queue  ttyinq[NUM_DEV_TTY+1] = {       /* ttyinq[0] is never used */
 
 /* tty_hw_init() which sets up tty5 can be found in discard.c */
 
-void tty_setup(uint8_t minor)
+void tty_setup(uint8_t minor, uint8_t flags)
 {
     minor;
 }
index d72a7db..93c557f 100644 (file)
@@ -2,7 +2,6 @@
 #define __DEVTTY_DOT_H__
 
 void tty_hw_init(void);
-void tty_putc(uint8_t minor, unsigned char c);
 void tty_pollirq_escc(void);
 void tty_pollirq_asci0(void);
 void tty_pollirq_asci1(void);