diff --git a/components/Kconfig b/components/Kconfig index 5aee4360a0..d9b9bc60df 100644 --- a/components/Kconfig +++ b/components/Kconfig @@ -34,6 +34,5 @@ source "$RTT_DIR/components/libc/Kconfig" source "$RTT_DIR/components/net/Kconfig" source "$RTT_DIR/components/utilities/Kconfig" source "$RTT_DIR/components/vbus/Kconfig" -source "$RTT_DIR/components/ktime/Kconfig" endmenu diff --git a/components/drivers/Kconfig b/components/drivers/Kconfig index 4a3d7f7fff..4fd3553df2 100755 --- a/components/drivers/Kconfig +++ b/components/drivers/Kconfig @@ -775,6 +775,7 @@ menuconfig RT_USING_VIRTIO source "$RTT_DIR/components/drivers/ofw/Kconfig" source "$RTT_DIR/components/drivers/pic/Kconfig" +source "$RTT_DIR/components/drivers/ktime/Kconfig" menu "Using USB" config RT_USING_USB diff --git a/components/ktime/Kconfig b/components/drivers/ktime/Kconfig similarity index 100% rename from components/ktime/Kconfig rename to components/drivers/ktime/Kconfig diff --git a/components/ktime/README.md b/components/drivers/ktime/README.md similarity index 100% rename from components/ktime/README.md rename to components/drivers/ktime/README.md diff --git a/components/ktime/SConscript b/components/drivers/ktime/SConscript similarity index 100% rename from components/ktime/SConscript rename to components/drivers/ktime/SConscript diff --git a/components/ktime/inc/ktime.h b/components/drivers/ktime/inc/ktime.h similarity index 100% rename from components/ktime/inc/ktime.h rename to components/drivers/ktime/inc/ktime.h diff --git a/components/ktime/src/aarch64/cputimer.c b/components/drivers/ktime/src/aarch64/cputimer.c similarity index 100% rename from components/ktime/src/aarch64/cputimer.c rename to components/drivers/ktime/src/aarch64/cputimer.c diff --git a/components/ktime/src/boottime.c b/components/drivers/ktime/src/boottime.c similarity index 100% rename from components/ktime/src/boottime.c rename to components/drivers/ktime/src/boottime.c diff --git a/components/ktime/src/cputimer.c b/components/drivers/ktime/src/cputimer.c similarity index 100% rename from components/ktime/src/cputimer.c rename to components/drivers/ktime/src/cputimer.c diff --git a/components/ktime/src/hrtimer.c b/components/drivers/ktime/src/hrtimer.c similarity index 100% rename from components/ktime/src/hrtimer.c rename to components/drivers/ktime/src/hrtimer.c diff --git a/components/ktime/src/risc-v/virt64/cputimer.c b/components/drivers/ktime/src/risc-v/virt64/cputimer.c similarity index 100% rename from components/ktime/src/risc-v/virt64/cputimer.c rename to components/drivers/ktime/src/risc-v/virt64/cputimer.c