Moves the source code for ring buffers to the 'misc' area, since it isn't really a central component of the kernel. (This also aligns the ring buffer source code with its include file, which is already under 'include/misc'.) Change-Id: I765a383a05f51fa67d154446f412496e689f9702 Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
9 lines
291 B
Makefile
9 lines
291 B
Makefile
obj-y =
|
|
obj-$(CONFIG_CPLUSPLUS) += cpp_virtual.o cpp_vtable.o \
|
|
cpp_init_array.o cpp_ctors.o cpp_dtors.o
|
|
obj-$(CONFIG_PRINTK) += printk.o
|
|
obj-$(CONFIG_REBOOT) += reboot.o
|
|
obj-$(CONFIG_RING_BUFFER) += ring_buffer.o
|
|
obj-y += generated/
|
|
obj-y += debug/
|