Force includes to use absolute paths.
This commit is contained in:
+11
-11
@@ -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
|
||||
|
||||
@@ -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()
|
||||
{
|
||||
|
||||
@@ -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))
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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,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.
|
||||
|
||||
Reference in New Issue
Block a user