-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move platform-specific hardware plugin base packages to sonic-platfor…
…m-common submodule (#1301)
- Loading branch information
Showing
12 changed files
with
48 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# sonic-ledd (SONiC Front-panel LED control daemon) Debian package | ||
|
||
SONIC_LEDD = python-sonic-ledd_1.0-1_all.deb | ||
SONIC_LEDD = python-sonic-ledd_1.1-1_all.deb | ||
$(SONIC_LEDD)_SRC_PATH = $(SRC_PATH)/sonic-platform-daemons/sonic-ledd | ||
SONIC_PYTHON_STDEB_DEBS += $(SONIC_LEDD) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# sonic-platform-common package | ||
|
||
SONIC_PLATFORM_COMMON_PY2 = sonic_platform_common-1.0-py2-none-any.whl | ||
$(SONIC_PLATFORM_COMMON_PY2)_SRC_PATH = $(SRC_PATH)/sonic-platform-common | ||
$(SONIC_PLATFORM_COMMON_PY2)_PYTHON_VERSION = 2 | ||
SONIC_PYTHON_WHEELS += $(SONIC_PLATFORM_COMMON_PY2) | ||
|
||
# Als build sonic-platform-common into python3 wheel, so we can use PSU code in SNMP docker | ||
# Note: _DEPENDS macro is not defined | ||
SONIC_PLATFORM_COMMON_PY3 = sonic_platform_common-1.0-py3-none-any.whl | ||
$(SONIC_PLATFORM_COMMON_PY3)_SRC_PATH = $(SRC_PATH)/sonic-platform-common | ||
$(SONIC_PLATFORM_COMMON_PY3)_PYTHON_VERSION = 3 | ||
SONIC_PYTHON_WHEELS += $(SONIC_PLATFORM_COMMON_PY3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
# sonic utilities package | ||
# | ||
# NOTE: sonic-config-engine is a build-time dependency of sonic-utilities | ||
# due to unit tests which are run during the build. However, | ||
# sonic-platform-common and swsssdk are runtime dependencies, and should be | ||
# added here also. However, the current build system assumes all runtime | ||
# dependencies are .deb packages. | ||
# | ||
# TODO: Create a way to specify both .deb and .whl runtime dependencies | ||
# then add the aforementioned runtime dependencies here. | ||
# | ||
|
||
SONIC_UTILS = python-sonic-utilities_1.1-1_all.deb | ||
SONIC_UTILS = python-sonic-utilities_1.2-1_all.deb | ||
$(SONIC_UTILS)_SRC_PATH = $(SRC_PATH)/sonic-utilities | ||
$(SONIC_UTILS)_WHEEL_DEPENDS = $(SONIC_CONFIG_ENGINE) | ||
SONIC_PYTHON_STDEB_DEBS += $(SONIC_UTILS) | ||
|
||
# Build sonic-utilities into python3 wheel, so we can use PSU code | ||
# Note: _DEPENDS macro is not defined | ||
SONIC_UTILS_PY3 = sonic_utilities-1.1-py3-none-any.whl | ||
$(SONIC_UTILS_PY3)_SRC_PATH = $(SRC_PATH)/sonic-utilities | ||
$(SONIC_UTILS_PY3)_PYTHON_VERSION = 3 | ||
$(SONIC_UTILS_PY3)_TEST = n | ||
SONIC_PYTHON_WHEELS += $(SONIC_UTILS_PY3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule sonic-platform-common
added at
058161
Submodule sonic-platform-daemons
updated
from d1df47 to 920f29
Submodule sonic-utilities
updated
from 6823ce to 495584