sonic-buildimage/rules
Saikrishna Arcot 330777e795
Image build time improvements (#10104)
* [build]: Patch debootstrap to not unmount the host's /proc filesystem

Currently, when the final image is being built (sonic-vs.img.gz,
sonic-broadcom.bin, or similar), each invocation of sudo in the
build_debian.sh script takes 0.8 seconds to run and execute the actual
command. This is because the /proc filesystem in the slave container has
been unmounted somehow. This is happening when debootstrap is running,
and it incorrectly unmounts the host's (in our case, the slave
container's) /proc filesystem because in the new image being built,
/proc is a symlink to the host's (the slave container's) /proc. Because
of that, /proc is gone, and each invocation of sudo adds 0.8 seconds
overhead. As a side effect, docker exec into the slave container during
this time will fail, because /proc/self/fd doesn't exist anymore, and
docker exec assumes that that exists.

Debootstrap has fixed this in 1.0.124 and newer, so backport the patch
that fixes this into the version that Bullseye has.

Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>

* [build_debian.sh]: Use eatmydata to speed up deb package installations

During package installations, dpkg calls fsync multiples times (for each
package) to ensure that tht efiles are written to disk, so that if
there's some system crash during package installation, then it is in at
least a somewhat recoverable state. For our use case though, we're
installing packages in a chroot in fsroot-* from a slave container and
then packaging it into an image. If there were a system crash (or even
if docker crashed), the fsroot-* directory would first be removed, and
the process would get restarted. This means that the fsync calls aren't
really needed for our use case.

The eatmydata package includes a library that will block/suppress the
use of fsync (and similar) system calls from applications and will
instead just return success, so that the application is not blocked on
disk writes, which can instead happen in the background instead as
necessary. If dpkg is run with this library, then the fsync calls that
it does will have no effect.

Therefore, install the eatmydata package at the beginning of
build_debian.sh and have dpkg be run under eatmydata for almost all
package installations/removals. At the end of the installation, remove
it, so that the final image uses dpkg as normal.

In my testing, this saves about 2-3 minutes from the image build time.

Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>

* Change ln syntax to use chroot

Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>
2022-04-19 09:22:16 -07:00
..
asyncsnmp-py3.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
asyncsnmp-py3.mk [build]: Fix dependency: asyncsnmp should not depend on PYTHON_SWSSCOMMON (#6672) 2021-02-03 20:17:34 -08:00
bash.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
bash.mk [TACACS+] Add plugin support to bash. (#8660) 2021-10-11 15:20:51 +08:00
config secureboot: Enable signing SONiC kernel (#10557) 2022-04-19 13:23:15 +08:00
dbsyncd-py3.dep [lldp]: Lldp docker to use python3 version of sonic-db-syncd package. (#6046) 2020-11-30 10:44:40 -08:00
dbsyncd-py3.mk [build]: Fix dependency: asyncsnmp should not depend on PYTHON_SWSSCOMMON (#6672) 2021-02-03 20:17:34 -08:00
debootstrap.dep Image build time improvements (#10104) 2022-04-19 09:22:16 -07:00
debootstrap.mk Image build time improvements (#10104) 2022-04-19 09:22:16 -07:00
dhcp6relay.dep Incorporate DHCPv6 Relay Agent into dhcp-relay docker (#8321) 2021-09-22 16:05:03 -07:00
dhcp6relay.mk dhcp6relay: remove line overwriting docker-dhcp-relay variable (#9179) 2021-11-06 02:18:59 -07:00
dhcpmon.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
dhcpmon.mk Package debugging and hardening for dhcpmon and dhcp6relay (#9862) 2022-01-27 17:48:58 -08:00
docker-base-bullseye.dep Create docker-base-bullseye and docker-config-engine-bullseye (#9666) 2022-01-11 09:23:42 -08:00
docker-base-bullseye.mk Create docker-base-bullseye and docker-config-engine-bullseye (#9666) 2022-01-11 09:23:42 -08:00
docker-base-buster.dep [mgmt-framework]: convert mgmt-framework to use buster docker (#4480) 2020-04-28 15:57:13 -07:00
docker-base-buster.mk Add infra to support building Bullseye base image with Buster containers 2021-11-10 15:27:22 -08:00
docker-base-stretch.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-base-stretch.mk [supervisor] Install vanilla package once again, install Python 3 version in Buster container (#5546) 2020-11-19 23:41:32 -08:00
docker-base.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-base.mk [supervisor] Install vanilla package once again, install Python 3 version in Buster container (#5546) 2020-11-19 23:41:32 -08:00
docker-config-engine-bullseye.dep Create docker-base-bullseye and docker-config-engine-bullseye (#9666) 2022-01-11 09:23:42 -08:00
docker-config-engine-bullseye.mk Create docker-base-bullseye and docker-config-engine-bullseye (#9666) 2022-01-11 09:23:42 -08:00
docker-config-engine-buster.dep [mgmt-framework]: convert mgmt-framework to use buster docker (#4480) 2020-04-28 15:57:13 -07:00
docker-config-engine-buster.mk Add infra to support building Bullseye base image with Buster containers 2021-11-10 15:27:22 -08:00
docker-config-engine-stretch.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-config-engine-stretch.mk [docker-config-engine-stretch]: Fix dependency typo PYTHON2_SWSSCOMMON (#6568) 2021-01-27 12:27:41 -08:00
docker-config-engine.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-config-engine.mk [synchronous-mode] Add template file for synchronous mode (#5644) 2020-10-23 13:08:35 -07:00
docker-database.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-database.mk [redis] Upgrade redis version (#9757) 2022-02-15 16:43:01 -08:00
docker-dhcp-relay.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-dhcp-relay.mk Package debugging and hardening for dhcpmon and dhcp6relay (#9862) 2022-01-27 17:48:58 -08:00
docker-fpm-frr.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-fpm-frr.mk Create a docker-swss-layer that holds the swss package. 2022-01-06 09:26:55 -08:00
docker-fpm.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-fpm.mk Remove quagga-related code (#7898) 2021-06-23 09:15:56 -07:00
docker-iccpd.dep [build]: DPKG caching fix for evaluation bugs (#4425) 2020-04-20 11:14:25 -07:00
docker-iccpd.mk Add infra to support building Bullseye base image with Buster containers 2021-11-10 15:27:22 -08:00
docker-lldp.dep [dockers] Rename 'docker-lldp-sv2' to 'docker-lldp' (#4700) 2020-06-09 09:09:56 -07:00
docker-lldp.mk Add infra to support building Bullseye base image with Buster containers 2021-11-10 15:27:22 -08:00
docker-macsec.dep [docker-macsec]: MACsec container and wpa_supplicant component (#5700) 2021-01-10 10:39:59 -08:00
docker-macsec.mk [macsec]: Upgrade docker-macsec to bullseye (#10574) 2022-04-17 20:32:51 +08:00
docker-mux.dep Merged PR 3845699: [linkmgrd]: Introduce MUX cable linkmgrd 2021-10-15 09:59:59 -07:00
docker-mux.mk Add infra to support building Bullseye base image with Buster containers 2021-11-10 15:27:22 -08:00
docker-nat.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-nat.mk Create a docker-swss-layer that holds the swss package. 2022-01-06 09:26:55 -08:00
docker-orchagent.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-orchagent.mk [scapy] update scapy to 2.4.5 and patch it (#10457) 2022-04-07 14:23:35 +03:00
docker-p4rt.dep [PINS] Build P4RT container for PINS (#9083) 2021-12-07 11:11:25 -08:00
docker-p4rt.mk [PINS] update sonic-p4rt docker to bullseye (#10182) 2022-03-23 17:21:36 -07:00
docker-platform-monitor.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-platform-monitor.mk Stop PMON before swss during warm reboot (#10046) 2022-02-27 11:47:15 +02:00
docker-restapi.mk Support bullseye for docker-sonic-restapi docker-sonic-telemetry (#9791) 2022-01-21 08:41:39 +08:00
docker-router-advertiser.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-router-advertiser.mk Upgrade router-advertiser container to Bullseye (#10374) 2022-04-01 16:12:43 -07:00
docker-sflow.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-sflow.mk Create a docker-swss-layer that holds the swss package. 2022-01-06 09:26:55 -08:00
docker-snmp.dep [dockers] Rename 'docker-snmp-sv2' to 'docker-snmp' (#4699) 2020-06-11 16:04:23 -07:00
docker-snmp.mk Add infra to support building Bullseye base image with Buster containers 2021-11-10 15:27:22 -08:00
docker-sonic-mgmt-framework.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-sonic-mgmt-framework.mk Add infra to support building Bullseye base image with Buster containers 2021-11-10 15:27:22 -08:00
docker-sonic-mgmt-spytest.dep Fix docker-sonic-mgmt-framework-dbg wrong dependency issue (#4314) 2020-03-24 19:32:51 +08:00
docker-sonic-mgmt.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-sonic-mgmt.mk [docker-sonic-mgmt]: set docker-sonic-mgmt as stretch docker (#4450) 2020-04-21 09:57:57 -07:00
docker-sonic-sdk-buildenv.dep [sonic-sdk] add sonic sdk and sonic sdk buildenv (#6712) 2021-05-28 10:16:02 -07:00
docker-sonic-sdk-buildenv.mk Add infra to support building Bullseye base image with Buster containers 2021-11-10 15:27:22 -08:00
docker-sonic-sdk.dep [sonic-sdk] add sonic sdk and sonic sdk buildenv (#6712) 2021-05-28 10:16:02 -07:00
docker-sonic-sdk.mk Add infra to support building Bullseye base image with Buster containers 2021-11-10 15:27:22 -08:00
docker-swss-layer-buster.dep Create a docker-swss-layer that holds the swss package. 2022-01-06 09:26:55 -08:00
docker-swss-layer-buster.mk Create a docker-swss-layer that holds the swss package. 2022-01-06 09:26:55 -08:00
docker-teamd.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-teamd.mk Create a docker-swss-layer that holds the swss package. 2022-01-06 09:26:55 -08:00
docker-telemetry.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
docker-telemetry.mk Support bullseye for docker-sonic-restapi docker-sonic-telemetry (#9791) 2022-01-21 08:41:39 +08:00
ethtool.dep Backport ethtool to support QSFP-DD (#5725) 2021-03-16 09:56:53 -07:00
ethtool.mk [ethtool]: disable unit test when building ethtool on armhf/arm64 (#7226) 2021-04-08 09:08:22 -07:00
flashrom.dep Flashrom refactoring for broadcom platforms (#7693) 2021-06-22 15:29:21 -07:00
flashrom.mk Flashrom refactoring for broadcom platforms (#7693) 2021-06-22 15:29:21 -07:00
frr.dep [frr]: Fix for missing dependency in frr module (#6094) 2020-12-03 02:35:21 -08:00
frr.mk [FRR]: Upgrade FRR to frr-7.5.1-s1 tag (#8443) 2021-08-12 21:41:04 -07:00
functions Fix rules/functions.generage_manifest. (#9340) 2021-11-23 23:19:58 +08:00
gobgp.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
gobgp.mk [build]: SONiC buildimage ARM arch support (#2980) 2019-07-25 22:06:41 -07:00
hiredis.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
hiredis.mk [build]: SONiC buildimage ARM arch support (#2980) 2019-07-25 22:06:41 -07:00
iccpd.dep [build]: DPKG caching fix for evaluation bugs (#4425) 2020-04-20 11:14:25 -07:00
iccpd.mk [iccpd] build iccpd deb by auto tools (#4540) 2020-05-21 09:12:51 -07:00
ifupdown2.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
ifupdown2.mk Upgrade to ifupdown2 3.0.0 with a patch to fix using broadcast addresses 2021-08-12 23:18:01 -07:00
initramfs-tools.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
initramfs-tools.mk Update initramfs-tools from 0.133 to 0.140 2021-11-10 15:27:22 -08:00
iproute2.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
iproute2.mk [iproute2]: Add macsec-xpn-support iproute2 in syncd (#8702) 2021-11-25 21:38:17 +08:00
iptables.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
iptables.mk [docker-nat]: upgrade docker-nat to buster (#4943) 2020-07-15 22:48:09 -07:00
isc-dhcp.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
isc-dhcp.mk [docker-dhcprelay]: Update to Bullseye (#9736) 2022-01-18 15:11:36 -08:00
ixgbe.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
ixgbe.mk [build]: add buster docker as the last step of the build proces 2020-04-16 10:26:18 +00:00
kdump-tools.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
kdump-tools.mk Update kdump-tools for bullseye 2021-11-10 15:27:22 -08:00
libnl3.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
libnl3.mk [libnl]: Debian Packaging libnl version 3.5.0 (#3967) 2020-01-06 17:01:28 -08:00
libteam.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
libteam.mk [dvs] Install libteamdctl runtime dependency in VS docker (#4837) 2020-06-24 14:07:22 -07:00
libyang1.dep Patch libyang1.0.184 so version and let frr 7.5 use the patched version 2020-12-29 03:44:49 -08:00
libyang1.mk Patch libyang1.0.184 so version and let frr 7.5 use the patched version 2020-12-29 03:44:49 -08:00
libyang.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
libyang.mk Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
linkmgrd.dep Merged PR 3845699: [linkmgrd]: Introduce MUX cable linkmgrd 2021-10-15 09:59:59 -07:00
linkmgrd.mk [linkmgrd] Enhance Init And Switch State When Config Is Active 2021-10-15 09:59:59 -07:00
linux-kernel.dep [Build]: Improve the linux kernel build cache hit rate (#9604) 2022-01-15 18:15:00 +08:00
linux-kernel.mk Update src/sonic-linux-kernel to point to the 5.10 kernel 2021-11-10 15:27:22 -08:00
lldpd.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
lldpd.mk Update lldpd to latest stable version (#3905) 2020-01-24 11:52:52 -08:00
lm-sensors.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
lm-sensors.mk [dockers] update mellanox syncd and pmon to buster (#4818) 2020-07-18 03:46:15 -07:00
monit.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
monit.mk [build]: add buster docker as the last step of the build proces 2020-04-16 10:26:18 +00:00
mpdecimal.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
mpdecimal.mk [build]: SONiC buildimage ARM arch support (#2980) 2019-07-25 22:06:41 -07:00
ntp.dep [ntp]: build ntp with various fixes (#6037) 2020-12-02 15:02:50 -08:00
ntp.mk Upgrade to ntp 4.2.8p15 for Bullseye 2021-11-10 15:27:22 -08:00
openssh.dep [openssh] Introduce custom openssh-server package for supporting reverse console SSH (#5717) 2020-11-02 10:31:15 +08:00
openssh.mk openssh: Upgrade from 7.9 to 8.4, to match version in Bullseye 2021-11-10 15:27:22 -08:00
p4rt.dep [PINS] Build P4RT container for PINS (#9083) 2021-12-07 11:11:25 -08:00
p4rt.mk [PINS] Build P4RT container for PINS (#9083) 2021-12-07 11:11:25 -08:00
phy-credo.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
phy-credo.mk [phy-credo] Update package for bullseye (#9829) 2022-01-22 10:32:02 -08:00
ptf.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
ptf.mk Integrate ptf into buildimage (#111) 2016-12-08 09:24:48 -08:00
radius.dep RADIUS Management User Authentication Feature (#7284) 2021-04-23 19:09:41 -07:00
radius.mk [build]: fix build break on armhf for radius (#7416) 2021-04-24 19:44:27 -07:00
redis-dump-load-py2.dep Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
redis-dump-load-py2.mk Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
redis-dump-load-py3.dep [redis-dump-load] Add dpkg cache dependency file for Python 3 package (#5195) 2020-08-15 16:36:34 -07:00
redis-dump-load-py3.mk Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
redis.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
redis.mk [build]: Fix make clean for redis-tools (#4903) 2020-07-12 18:08:52 +00:00
restapi.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
restapi.mk Changes to build restapi docker (#3993) 2020-01-10 13:46:32 -08:00
sairedis.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
sairedis.mk [sonic-sdk] add sonic sdk and sonic sdk buildenv (#6712) 2021-05-28 10:16:02 -07:00
scapy.dep [scapy] update scapy to 2.4.5 and patch it (#10457) 2022-04-07 14:23:35 +03:00
scapy.mk [scapy] update scapy to 2.4.5 and patch it (#10457) 2022-04-07 14:23:35 +03:00
scripts.dep [CBF] Added configuration templates to generate configs for CBF (#8689) 2021-10-29 17:18:57 -07:00
scripts.mk [CBF] Added configuration templates to generate configs for CBF (#8689) 2021-10-29 17:18:57 -07:00
sflow.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
sflow.mk [sflow] Update version of hsflowd (#7137) 2021-03-27 21:09:57 -07:00
smartmontools.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
smartmontools.mk [build]: add buster docker as the last step of the build proces 2020-04-16 10:26:18 +00:00
snmpd.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
snmpd.mk Update snmpd to 5.9, as part of the Bullseye upgrade 2021-11-10 15:27:22 -08:00
socat.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
socat.mk Create docker-base-bullseye and docker-config-engine-bullseye (#9666) 2022-01-11 09:23:42 -08:00
sonic_bgpcfgd.dep [bgpcfgd]: make a package for bgpcfgd (#4813) 2020-06-20 21:01:24 -07:00
sonic_bgpcfgd.mk [Yang][cfggen] update sonic-cfggen to generate config_db from Yang data (#7712) 2021-06-10 12:03:33 -07:00
sonic-chassisd.dep Chassisd to monitor cards in a modular chassis (#5523) 2020-12-15 16:28:58 -08:00
sonic-chassisd.mk Chassisd to monitor cards in a modular chassis (#5523) 2020-12-15 16:28:58 -08:00
sonic-config.dep [build] Add more dependencies to sonic-config-engine (#9894) 2022-02-08 11:20:02 +08:00
sonic-config.mk Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
sonic-ctrmgrd.dep First cut image update for kubernetes support. (#5421) 2020-12-22 08:01:33 -08:00
sonic-ctrmgrd.mk First cut image update for kubernetes support. (#5421) 2020-12-22 08:01:33 -08:00
sonic-device-data.dep Fix for missing dependency in the sonic device package and added .dep file for yang module (#4471) 2020-05-06 13:17:08 +08:00
sonic-device-data.mk [build]: add buster docker as the last step of the build proces 2020-04-16 10:26:18 +00:00
sonic-frr-mgmt-framework.dep [frrcfgd] introduce frrcfgd to manage frr config when frr_mgmt_framework_config is true (#5142) 2021-01-24 17:57:03 -08:00
sonic-frr-mgmt-framework.mk [frrcfgd] introduce frrcfgd to manage frr config when frr_mgmt_framework_config is true (#5142) 2021-01-24 17:57:03 -08:00
sonic-host-services-data.dep Add sonic-host-services and sonic-host-services-data packages (#5694) 2020-10-23 09:52:29 -07:00
sonic-host-services-data.mk Add sonic-host-services and sonic-host-services-data packages (#5694) 2020-10-23 09:52:29 -07:00
sonic-host-services.dep Add sonic-host-services and sonic-host-services-data packages (#5694) 2020-10-23 09:52:29 -07:00
sonic-host-services.mk Replace swsssdk with swsscommon in sonic-host-services (#8034) 2021-07-06 02:07:45 -07:00
sonic-ledd.dep Add pmon daemons python3 build support (#6176) 2020-12-28 10:19:24 -08:00
sonic-ledd.mk Add pmon daemons python3 build support (#6176) 2020-12-28 10:19:24 -08:00
sonic-mgmt-common.dep Mgmt reorg -- submodule and build rules for sonic-mgmt-common (#4765) 2020-06-22 16:01:55 -07:00
sonic-mgmt-common.mk Mgmt reorg -- submodule and build rules for sonic-mgmt-common (#4765) 2020-06-22 16:01:55 -07:00
sonic-mgmt-framework.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
sonic-mgmt-framework.mk [build]: combine feature and container feature table (#5081) 2020-08-05 13:23:12 -07:00
sonic-packages.mk [sonic-app-ext] support app extensions installation during build (#7593) 2021-06-29 09:07:33 -07:00
sonic-pcied.dep Removed python2 dependency for sonic-pcied in sonic-platform-daemons (#10421) 2022-04-09 13:16:50 -07:00
sonic-pcied.mk Removed python2 dependency for sonic-pcied in sonic-platform-daemons (#10421) 2022-04-09 13:16:50 -07:00
sonic-platform-common.dep Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
sonic-platform-common.mk Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
sonic-psud.dep Add pmon daemons python3 build support (#6176) 2020-12-28 10:19:24 -08:00
sonic-psud.mk [sonic-psud] Depend on sonic-platform-common (#7182) 2021-03-30 08:32:07 -07:00
sonic-py-common.dep Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
sonic-py-common.mk Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
sonic-syseepromd.dep Add pmon daemons python3 build support (#6176) 2020-12-28 10:19:24 -08:00
sonic-syseepromd.mk [sonic-syseepromd] Depend on sonic-platform-common (#7279) 2021-04-09 16:58:53 -07:00
sonic-thermalctld.dep Add pmon daemons python3 build support (#6176) 2020-12-28 10:19:24 -08:00
sonic-thermalctld.mk [sonic-thermalctld] Depend on sonic-platform-common (#7181) 2021-03-29 23:39:47 -07:00
sonic-utilities-data.dep [sonic-utilities] Build and install as a Python wheel package (#5409) 2020-09-20 20:16:42 -07:00
sonic-utilities-data.mk [sonic-utilities] Build and install as a Python wheel package (#5409) 2020-09-20 20:16:42 -07:00
sonic-utilities.dep [sonic-utilities] Update submodule; Build and install as a Python 3 wheel (#5926) 2020-11-25 10:28:36 -08:00
sonic-utilities.mk [sonic-sdk] add sonic sdk and sonic sdk buildenv (#6712) 2021-05-28 10:16:02 -07:00
sonic-xcvrd.dep Add pmon daemons python3 build support (#6176) 2020-12-28 10:19:24 -08:00
sonic-xcvrd.mk [xcvrd] Remove dependency on SONIC_PLATFORM_API_PY2 and SONIC_PLATFORM_API_PY3 (#6344) 2021-01-05 09:39:52 -08:00
sonic-yang-mgmt-py3.dep [sonic-yang-mgmt] Build PY3 & PY2 packages (#5559) 2020-11-07 13:03:41 -08:00
sonic-yang-mgmt-py3.mk [sonic-yang-mgmt] Build PY3 & PY2 packages (#5559) 2020-11-07 13:03:41 -08:00
sonic-yang-models-py3.dep Fix for missing dependency in the sonic device package and added .dep file for yang module (#4471) 2020-05-06 13:17:08 +08:00
sonic-yang-models-py3.mk Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
sonic-ycabled.dep [y_cable] Support for initialization of new daemon ycable to support ycables (#9125) 2022-01-25 11:10:25 -08:00
sonic-ycabled.mk [y_cable] Support for initialization of new daemon ycable to support ycables (#9125) 2022-01-25 11:10:25 -08:00
sonic-ztp.dep [build]: Fix for missing dependencies in the DPKG framework (#6393) 2021-01-13 10:32:42 -08:00
sonic-ztp.mk Install swsssdk-py3 in the base Debian image for python3 based apps (#4542) 2020-05-19 11:15:05 -07:00
swss-common.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
swss-common.mk [sonic-swss-common]: Submodule update (#9395) 2021-12-01 10:14:13 -08:00
swss.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
swss.mk [swss] Depend on Python 3 version of swsscommon rather than Python 2 (#6432) 2021-01-14 00:29:21 -08:00
swsssdk-py2.dep Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
swsssdk-py2.mk Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
swsssdk-py3.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
swsssdk-py3.mk Python 2 removal/cleanup 2021-11-10 15:27:22 -08:00
syncd.dep [docker-orchagent]: make build depends only on sairedis package (#4880) 2020-07-12 18:08:51 +00:00
syncd.mk New sonic-buildimage images for Broadcom DNX ASIC family. (#7598) 2021-06-22 11:12:22 -07:00
system-health.dep [system-health] Add support for monitoring system health (#4835) 2020-10-12 11:12:49 +03:00
system-health.mk [system-health] No longer check critical process/service status via monit (#9068) 2021-11-23 15:47:48 -08:00
systemd-sonic-generator.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
systemd-sonic-generator.mk [build]: Move Systemd service start to systemd generator (#3172) 2019-07-29 15:52:15 -07:00
tacacs.dep [TACACS+] Add Bash TACACS+ plugin for per-command authorization. (#8715) 2021-11-13 09:57:30 +08:00
tacacs.mk [TACACS+] Add audisp-tacplus for per-command accounting. (#8750) 2021-12-01 11:50:09 +08:00
telemetry.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
telemetry.mk Mgmt reorg -- submodule and build rules for sonic-mgmt-common (#4765) 2020-06-22 16:01:55 -07:00
template.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
thrift_0_14_1.dep Bump Thrift version from 0.13.0 to 0.14.1 (#9881) 2022-02-15 16:39:47 -08:00
thrift_0_14_1.mk Bump Thrift version from 0.13.0 to 0.14.1 (#9881) 2022-02-15 16:39:47 -08:00
thrift.dep [build]: support for DPKG local caching (#4117) 2020-03-11 20:04:52 -07:00
thrift.mk [build]: SONiC buildimage ARM arch support (#2980) 2019-07-25 22:06:41 -07:00
wpasupplicant.dep [docker-macsec]: MACsec container and wpa_supplicant component (#5700) 2021-01-10 10:39:59 -08:00
wpasupplicant.mk [docker-macsec]: MACsec container and wpa_supplicant component (#5700) 2021-01-10 10:39:59 -08:00