Skip to content

Commit 27ffea8

Browse files
authored
Merge pull request #194 from smartobjectoriented/193-add-logs-support-in-soo-environment
Add support for `logs` - used in soo env.
2 parents dccde6d + 6aa6ac2 commit 27ffea8

File tree

40 files changed

+512
-14
lines changed

40 files changed

+512
-14
lines changed

so3/arch/arm32/mmu.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#include <heap.h>
2222
#include <sizes.h>
2323
#include <string.h>
24+
#include <log.h>
2425

2526
#include <device/ramdev.h>
2627

so3/arch/arm64/mmu.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include <sizes.h>
2323
#include <string.h>
2424
#include <process.h>
25+
#include <log.h>
2526

2627
#include <device/ramdev.h>
2728
#include <device/fdt.h>

so3/avz/kernel/domain.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include <softirq.h>
2525
#include <memory.h>
2626
#include <heap.h>
27+
#include <log.h>
2728

2829
#include <asm/processor.h>
2930
#include <asm/vfp.h>

so3/avz/kernel/injector.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include <crc.h>
2323
#include <softirq.h>
2424
#include <ptrace.h>
25+
#include <log.h>
2526

2627
#include <avz/memslot.h>
2728
#include <avz/domain.h>

so3/configs/virt64_capsule_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,4 @@ CONFIG_VUART_FRONTEND=y
103103
# CONFIG_VUIHANDLER_FRONTEND is not set
104104
# CONFIG_VSENSELED_FRONTEND is not set
105105
# CONFIG_VSENSEJ_FRONTEND is not set
106+
CONFIG_VLOGS_FRONTEND=y

so3/devices/device.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include <errno.h>
2424
#include <ctype.h>
2525
#include <vfs.h>
26+
#include <log.h>
2627

2728
#include <asm/setup.h>
2829

so3/devices/fdt.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include <string.h>
2121
#include <common.h>
2222
#include <memory.h>
23+
#include <log.h>
2324

2425
#include <device/device.h>
2526
#include <device/driver.h>

so3/devices/input/kmi0.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
#include <vfs.h>
2828
#include <common.h>
2929
#include <memory.h>
30+
#include <log.h>
3031

3132
#include <asm/io.h>
3233
#include <device/driver.h>

so3/devices/input/ps2.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#endif
3131

3232
#include <common.h>
33+
#include <log.h>
3334
#include <device/input/ps2.h>
3435

3536
#define GET_DX(state, x) ((x) - (((state) << 4) & 0x100))

so3/devices/irq.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include <heap.h>
2323
#include <string.h>
2424
#include <thread.h>
25+
#include <log.h>
2526

2627
#include <device/irq.h>
2728

0 commit comments

Comments
 (0)