Force includes to use absolute paths.

This commit is contained in:
Enrico Fraccaroli
2021-10-05 14:29:24 +02:00
parent 0c6a38e189
commit 18a2fd9baa
95 changed files with 351 additions and 627 deletions
+11 -11
View File
@@ -5,22 +5,22 @@
/// See LICENSE.md for details.
///! @cond Doxygen_Suppress
#include "ata.h"
#include "spinlock.h"
#include "drivers/ata.h"
#include "klib/spinlock.h"
#include "fcntl.h"
#include "vmem_map.h"
#include "list.h"
#include "mem/vmem_map.h"
#include "klib/list.h"
#include "stdio.h"
#include "isr.h"
#include "vfs.h"
#include "pci.h"
#include "debug.h"
#include "kheap.h"
#include "descriptor_tables/isr.h"
#include "fs/vfs.h"
#include "devices/pci.h"
#include "misc/debug.h"
#include "mem/kheap.h"
#include "assert.h"
#include "string.h"
#include "kernel.h"
#include "pic8259.h"
#include "port_io.h"
#include "hardware/pic8259.h"
#include "io/port_io.h"
#include "time.h"
// #define COMPLETE_SCHEDULER
+3 -3
View File
@@ -4,9 +4,9 @@
/// @copyright (c) 2014-2021 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#include "fdc.h"
#include "video.h"
#include "port_io.h"
#include "drivers/fdc.h"
#include "io/video.h"
#include "io/port_io.h"
void fdc_disable_motor()
{
+8 -8
View File
@@ -4,17 +4,17 @@
/// @copyright (c) 2014-2021 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#include "keyboard.h"
#include "drivers/keyboard/keyboard.h"
#include "port_io.h"
#include "pic8259.h"
#include "keymap.h"
#include "io/port_io.h"
#include "hardware/pic8259.h"
#include "drivers/keyboard/keymap.h"
#include "sys/bitops.h"
#include "video.h"
#include "debug.h"
#include "io/video.h"
#include "misc/debug.h"
#include "ctype.h"
#include "isr.h"
#include "scheduler.h"
#include "descriptor_tables/isr.h"
#include "process/scheduler.h"
/// A macro from Ivan to update buffer indexes.
#define STEP(x) (((x) == BUFSIZE - 1) ? 0 : ((x) + 1))
+1 -1
View File
@@ -4,7 +4,7 @@
/// @copyright (c) 2014-2021 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#include "keymap.h"
#include "drivers/keyboard/keymap.h"
#include "string.h"
/// Identifies the current keymap type.
+3 -3
View File
@@ -6,9 +6,9 @@
///// See LICENSE.md for details.
/////! @cond Doxygen_Suppress
#include "mouse.h"
#include "pic8259.h"
#include "port_io.h"
#include "drivers/mouse.h"
#include "hardware/pic8259.h"
#include "io/port_io.h"
static uint8_t mouse_cycle = 0;
+4 -4
View File
@@ -4,13 +4,13 @@
/// @copyright (c) 2014-2021 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#include "rtc.h"
#include "drivers/rtc.h"
#include "pic8259.h"
#include "hardware/pic8259.h"
#include "string.h"
#include "port_io.h"
#include "io/port_io.h"
#include "kernel.h"
#include "isr.h"
#include "descriptor_tables/isr.h"
#define CMOS_ADDR 0x70 ///< Addess where we need to write the Address.
#define CMOS_DATA 0x71 ///< Addess where we need to write the Data.