Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lkl fbsd #220

Closed
wants to merge 47 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
7b03790
checkpatch: avoid showing uint*_t warnings for tools/ files
Sep 21, 2015
2daea04
checkpatch: avoid showing BIT_ULL warnings for tools/ files
Sep 21, 2015
d7f3cf0
asm-generic: atomic64: allow using generic atomic64 on 64bit platforms
Jul 23, 2015
0cc6fd2
kbuild: allow architectures to automatically define kconfig symbols
Nov 2, 2015
bdcd92b
lkl: architecture skeleton for Linux kernel library
Sep 15, 2015
c37082e
lkl: host interface
Nov 2, 2015
5456f35
lkl: memory handling
Sep 15, 2015
359c42b
lkl: kernel threads support
Sep 16, 2015
cbf0c57
lkl: interrupt support
Sep 16, 2015
f088db9
lkl: system call interface and application API
Sep 16, 2015
bba49f9
lkl: timers, time and delay support
Sep 16, 2015
ea4fda5
lkl: memory mapped I/O support
Sep 17, 2015
6e8fb31
lkl: basic kernel console support
Sep 17, 2015
47493a4
init: allow architecture code to overide run_init_process
Aug 19, 2015
1ee887e
lkl: initialization and cleanup
Sep 17, 2015
a7ef6b6
lkl: plug in the build system
Sep 17, 2015
4fc2010
lkl tools: skeleton for host side library, tests and tools
Sep 18, 2015
d72f515
lkl tools: host lib: add lkl_strerror and lkl_printf
Sep 18, 2015
1a8636c
lkl tools: host lib: memory mapped I/O helpers
Sep 18, 2015
da15a1b
lkl tools: host lib: virtio devices
Sep 18, 2015
059ac9c
lkl tools: host lib: virtio block device
Sep 18, 2015
5fd23ea
lkl tools: host lib: filesystem helpers
Sep 18, 2015
2cd5d37
lkl tools: host lib: posix host operations
Sep 18, 2015
461a58d
lkl tools: "boot" test
Sep 18, 2015
6c52ac5
lkl tools: tool that converts a filesystem image to tar
Sep 18, 2015
c8e0586
lkl tools: tool that reads/writes to/from a filesystem image
Sep 18, 2015
e2b0cf0
signal: use CONFIG_X86_32 instead of __i386__
Sep 29, 2015
4145718
asm-generic: vmlinux.lds.h: allow customized rodata section name
Oct 27, 2015
c9411ed
lkl: add support for Windows hosts
Nov 3, 2015
d5bc73f
lkl tools: add support for Windows host
Nov 3, 2015
90814da
lkl: add documentation
Sep 28, 2015
8ec7b89
lkl: fix zero page implementation
Nov 8, 2015
fe49079
lkl: add more filesystem related system calls
Nov 8, 2015
d88e0bd
lkl tools: git .gitignore
Nov 8, 2015
c4591a9
lkl tools: add a new lkl_dirfd API
Nov 8, 2015
2a3cf55
lkl tools: add lklfuse
Nov 8, 2015
5ee93e6
lkl: sys_statfs64 takes a middle size parameter
cemeyer Nov 9, 2015
69259d8
lkl: headers_install: Use env(1) to locate python binary
cemeyer Nov 9, 2015
40ce53e
lkl tools: Makefile: Drop lkl.o:lkl.o circular dependency
cemeyer Nov 9, 2015
4efe442
lkl: convert makefile echo \t to inline tab
cemeyer Nov 9, 2015
ed4362d
lkl tools: Add kernel clean to clean target
cemeyer Nov 9, 2015
2bd6dca
tools lkl: Use OUTPUT_FORMAT variable instead of duplicating LD invoc…
cemeyer Nov 9, 2015
5b51c31
lkl tools: build with GCC, turn on the optimizer and more warnings
cemeyer Nov 9, 2015
ce68a0c
lkl tools: Fix compiler warnings
cemeyer Nov 9, 2015
3aa8768
lkl: add support for 64bit FreeBSD
cemeyer Nov 9, 2015
dc4223e
lkl: On FreeBSD, use hw.ncpu sysctl instead of Linux nproc(1)
cemeyer Nov 9, 2015
12f7c73
lkl tools: add support for 64bit FreeBSD
cemeyer Nov 11, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
lkl tools: Makefile: Drop lkl.o:lkl.o circular dependency
Signed-off-by: Conrad Meyer <cem@FreeBSD.org>
Signed-off-by: Octavian Purdila <octavian.purdila@intel.com>
cemeyer authored and Octavian Purdila committed Nov 11, 2015
commit 40ce53e46b0ca53f05d78d71907ad3c00ec66813
6 changes: 3 additions & 3 deletions tools/lkl/Makefile
Original file line number Diff line number Diff line change
@@ -23,13 +23,13 @@ ifeq ($(shell $(LD) -r -print-output-format),elf64-x86-64)
CFLAGS += -D_FILE_OFFSET_BITS=64
endif

lib_objs = $(patsubst %.c,%.o, $(lib_source)) lib/lkl.o
lib_objs = $(patsubst %.c,%.o, $(lib_source))
objs = $(patsubst %.c,%.o, $(source))
execs += $(patsubst %.c,%, $(source))

all: lib/liblkl.a $(execs)

lib/liblkl.a: $(lib_objs)
lib/liblkl.a: $(lib_objs) lib/lkl.o
$(AR) -rc $@ $^

lib/lkl.o:
@@ -44,7 +44,7 @@ $(objs): lib/lkl.o
$(execs): lib/liblkl.a

clean:
-rm -rf include/lkl/ lib/liblkl.a $(lib_objs) $(objs) $(execs)
-rm -rf include/lkl/ lib/liblkl.a $(lib_objs) lib/lkl.o $(objs) $(execs)

fs2tar: LDFLAGS += -larchive
lklfuse: LDFLAGS += -lfuse