mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-30 04:33:58 +00:00
cbc_attach is one SOS service that enable IOC CBC line discipline feature. It started by systemd by default, and exit if failed to set the line discipline that means the platform does not support IOC. Signed-off-by: Vineetha G Jaya Kumaran <vineetha.g.jaya.kumaran@intel.com> Signed-off-by: Yuan Liu <yuan1.liu@intel.com> Signed-off-by: Yu Wang <yu1.wang@intel.com> Reviewed-by: Vineetha G Jaya Kumaran <vineetha.g.jaya.kumaran@intel.com> Reviewed-by: Key Seong Lim <key.seong.lim@intel.com> Reviewed-by: Alex Du <alek.du@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
25 lines
527 B
Makefile
25 lines
527 B
Makefile
T := $(CURDIR)
|
|
|
|
.PHONY: all cbc_lifecycle cbc_attach
|
|
all: cbc_lifecycle cbc_attach
|
|
|
|
cbc_lifecycle:
|
|
make -C $(T)/cbc_lifecycle OUT_DIR=$(OUT_DIR)
|
|
cbc_attach:
|
|
make -C $(T)/cbc_attach OUT_DIR=$(OUT_DIR)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
make -C $(T)/cbc_lifecycle clean
|
|
make -C $(T)/cbc_attach clean
|
|
rm -rf $(OUT_DIR)
|
|
|
|
.PHONY: install
|
|
install: cbc_lifecycle-install cbc_attach-install
|
|
|
|
cbc_lifecycle-install:
|
|
make -C $(T)/cbc_lifecycle OUT_DIR=$(OUT_DIR) install
|
|
|
|
cbc_attach-install:
|
|
make -C $(T)/cbc_attach OUT_DIR=$(OUT_DIR) install
|