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

merge sonic master to update #4

Merged
merged 25 commits into from
May 4, 2018
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3726c9f
Update swss submodule pointer (#1641)
andriymoroz-mlnx Apr 25, 2018
4dc327d
[submodule]: Update submodule sonic-snmpagent (#1642)
qiluo-msft Apr 25, 2018
65b3774
[nehpos] fix libsainps and nps-sdk bug for support sai 1.2.4 (#1639)
simonJi2018 Apr 26, 2018
8d2a30a
[kernel]: update sonic linux kernel (#1645)
lguohan Apr 26, 2018
d269263
[baseimage]: add screen package (#1644)
lguohan Apr 26, 2018
321ff4e
[swss]: update sonic-swss (#1638)
lguohan Apr 26, 2018
3993e58
[updategraph]: Keep updategraph service active after start (#1651)
prsunny Apr 26, 2018
18e97fb
[docker-lldpd]: Various fixes (#1650)
pavel-shirshov Apr 27, 2018
764d081
[sonic-utilities]: Submodule update for sonic-utilities (#1653)
prsunny Apr 27, 2018
02f706a
[mellanox]: Update SAI version to 1.11.4 and SDK to 4.2.7303 (#1655)
andriymoroz-mlnx Apr 28, 2018
8d3c5fb
[docker-dhcp]: Fix the sonic build issue (#1659)
zhenggen-xu Apr 30, 2018
3ed4513
[minigraph.py] Fix an issue that mirror table might be considered ctr…
taoyl-ms Apr 30, 2018
f3426e3
Decrease usable space in log partition to 90% (#1648)
andriymoroz-mlnx Apr 30, 2018
1ae4db3
Quagga: Use bgp keepalive and holdtime timers from configdb (#1661)
pavel-shirshov Apr 30, 2018
3d61df9
Remove snmpd hw_fsys module, remove disk monitoring which are not in …
qiluo-msft May 1, 2018
c74be37
[swss]: update swss submodule (#1664)
lguohan May 1, 2018
5817e99
Revert "Remove snmpd hw_fsys module, remove disk monitoring which is …
qiluo-msft May 2, 2018
bebb7a0
[zebra.conf] Fix template issue with multiple lo addresses (#1662)
taoyl-ms May 2, 2018
e082cd6
[swss]: Change the hash seed to 0 for ToR and 10 for Leaf routers (#1…
May 2, 2018
74e8bea
[snmp]: Stop spamming logs with statfs permission denied log message …
pavel-shirshov May 2, 2018
9a23770
[broadcom]: update broadcom SAI to 3.1.3.4-11 (#1670)
lguohan May 2, 2018
832be7b
[dockers] Prevent apt-get from installing suggested and recommended p…
jleveque May 2, 2018
0c9e8ee
Revert "Fix the sonic build issue" (#1671)
jleveque May 2, 2018
e07687f
[sonic-platform-common] Update submodule (#1672)
jleveque May 4, 2018
724aaf1
[device] Update arista driver submodule (#1674)
Staphylo May 4, 2018
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
[docker-dhcp]: Fix the sonic build issue (sonic-net#1659)
Install the built version of isc-dhcp-client in docker-dhcp-relay
zhenggen-xu authored and lguohan committed Apr 30, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 8d3c5fbcc21e72d38827c742f208a9984456be2d
2 changes: 1 addition & 1 deletion rules/docker-dhcp-relay.mk
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

DOCKER_DHCP_RELAY = docker-dhcp-relay.gz
$(DOCKER_DHCP_RELAY)_PATH = $(DOCKERS_PATH)/docker-dhcp-relay
$(DOCKER_DHCP_RELAY)_DEPENDS += $(ISC_DHCP_COMMON) $(ISC_DHCP_RELAY)
$(DOCKER_DHCP_RELAY)_DEPENDS += $(ISC_DHCP_COMMON) $(ISC_DHCP_RELAY) $(ISC_DHCP_CLIENT)
$(DOCKER_DHCP_RELAY)_LOAD_DOCKERS = $(DOCKER_CONFIG_ENGINE)
SONIC_DOCKER_IMAGES += $(DOCKER_DHCP_RELAY)
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_DHCP_RELAY)
6 changes: 5 additions & 1 deletion rules/isc-dhcp.mk
Original file line number Diff line number Diff line change
@@ -8,5 +8,9 @@ ISC_DHCP_COMMON = isc-dhcp-common_$(ISC_DHCP_VERSION)_amd64.deb
$(ISC_DHCP_COMMON)_SRC_PATH = $(SRC_PATH)/isc-dhcp
SONIC_MAKE_DEBS += $(ISC_DHCP_COMMON)

ISC_DHCP_CLIENT = isc-dhcp-client_$(ISC_DHCP_VERSION)_amd64.deb
$(ISC_DHCP_CLIENT)_SRC_PATH = $(SRC_PATH)/isc-dhcp
SONIC_MAKE_DEBS += $(ISC_DHCP_CLIENT)

ISC_DHCP_RELAY = isc-dhcp-relay_$(ISC_DHCP_VERSION)_amd64.deb
$(eval $(call add_derived_package,$(ISC_DHCP_COMMON),$(ISC_DHCP_RELAY)))
$(eval $(call add_derived_package,$(ISC_DHCP_COMMON),$(ISC_DHCP_RELAY),$(ISC_DHCP_CLIENT)))
3 changes: 2 additions & 1 deletion src/isc-dhcp/Makefile
Original file line number Diff line number Diff line change
@@ -3,7 +3,8 @@ SHELL = /bin/bash
.SHELLFLAGS += -e

MAIN_TARGET = isc-dhcp-common_$(ISC_DHCP_VERSION)_amd64.deb
DERIVED_TARGETS = isc-dhcp-relay_$(ISC_DHCP_VERSION)_amd64.deb
DERIVED_TARGETS = isc-dhcp-relay_$(ISC_DHCP_VERSION)_amd64.deb \
isc-dhcp-client_$(ISC_DHCP_VERSION)_amd64.deb

$(addprefix $(DEST)/, $(MAIN_TARGET)): $(DEST)/% :
# Remove any stale files