c92bfe0728
Why I did it add celestica belgite platform How I did it add belgite platform in celestica Co-authored-by: nicwu-cel <nicwu@celestica.com> Co-authored-by: anjian <anjian@celestica.com> Co-authored-by: sandycelestica <sandyli@celestica.com>
55 lines
1.8 KiB
Makefile
Executable File
55 lines
1.8 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export INSTALL_MOD_DIR:=extra
|
|
export KBUILD_EXTRA_SYMBOLS := /sonic/platform/pddf/i2c/Module.symvers.PDDF
|
|
|
|
KVERSION ?= $(shell uname -r)
|
|
KERNEL_SRC := /lib/modules/$(KVERSION)
|
|
MOD_SRC_DIR:= $(shell pwd)
|
|
MODULE_DIRS:= dx010 haliburton silverstone seastone2 belgite
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
(for mod in $(MODULE_DIRS); do \
|
|
make -C $(KERNEL_SRC)/build M=$(MOD_SRC_DIR)/$${mod}/modules; \
|
|
if [ $$mod = "seastone2" ]; then \
|
|
cd $(MOD_SRC_DIR)/services/platform_api; \
|
|
python3 setup.py bdist_wheel -d $(MOD_SRC_DIR)/$${mod}/modules; \
|
|
continue; \
|
|
fi; \
|
|
if [ $$mod = "belgite" ]; then \
|
|
cd $(MOD_SRC_DIR); \
|
|
if [ -d $(MOD_SRC_DIR)/$${mod}/pddf ]; then \
|
|
cd $(MOD_SRC_DIR)/$${mod}/pddf; \
|
|
if [ -f sonic_platform_setup.py ]; then \
|
|
python3 sonic_platform_setup.py bdist_wheel -d $(MOD_SRC_DIR)/$${mod}/pddf; \
|
|
echo "Finished makig pddf whl package for $$mod"; \
|
|
fi; \
|
|
fi; \
|
|
continue; \
|
|
fi; \
|
|
cd $(MOD_SRC_DIR)/$${mod}; \
|
|
python3 setup.py bdist_wheel -d $(MOD_SRC_DIR)/$${mod}/modules; \
|
|
done)
|
|
|
|
override_dh_auto_install:
|
|
(for mod in $(MODULE_DIRS); do \
|
|
dh_installdirs -pplatform-modules-$${mod} \
|
|
$(KERNEL_SRC)/$(INSTALL_MOD_DIR); \
|
|
cp $(MOD_SRC_DIR)/$${mod}/modules/*.ko \
|
|
debian/platform-modules-$${mod}/$(KERNEL_SRC)/$(INSTALL_MOD_DIR); \
|
|
done)
|
|
|
|
override_dh_usrlocal:
|
|
|
|
override_dh_clean:
|
|
dh_clean
|
|
(for mod in $(MODULE_DIRS); do \
|
|
make -C $(KERNEL_SRC)/build M=$(MOD_SRC_DIR)/$${mod}/modules clean; \
|
|
if [ -f $(MOD_SRC_DIR)/$${mod}/pddf/*.whl ]; then \
|
|
rm -f $(MOD_SRC_DIR)/$${mod}/pddf/*.whl; \
|
|
fi; \
|
|
done)
|