forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 49
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
[JD] Fixed D6356J I2C related issues which reported from JD #8
Draft
Neil-Inventec
wants to merge
2,738
commits into
sonoble:master
Choose a base branch
from
inventec-switches:Inventec-201911
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
[JD] Fixed D6356J I2C related issues which reported from JD #8
Neil-Inventec
wants to merge
2,738
commits into
sonoble:master
from
inventec-switches:Inventec-201911
Conversation
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
…tarting relay agent (sonic-net#3441)
- monit config broke by one monit upgrade - abandon sed approach since it is suspestible to monit config changes - use unixsocket instead of httpd due to a bug in 5.20.0
…3449) * [cron.d] Create cron job to periodically clean-up core files * Create script to scan /var/core and clean-up older core files * Create cron job to run clean-up script Signed-off-by: Danny Allen <daall@microsoft.com> * Update interval for running cron job * Respond to feedback * Change syslog id
* Use dot1p to tc mapping for backend switches Signed-off-by: Wenda Ni <wenni@microsoft.com> * Do not write DSCP to TC mapping into CONFIG_DB or config_db.json for storage switches Signed-off-by: Wenda Ni <wenni@microsoft.com>
…form2.0_s6100 DellEMC S6100 : Platform2.0 API implementation [Module, Thermal]
Both python2 and python3 wheels being built out of the same source directory can interfere with each other when SONIC_BUILD_JOBS > 1. Signed-off-by: Greg Paussa <greg.paussa@broadcom.com>
sonic-net#3418) * Z9264f_50gProfile: Added support for 50g profile
…lities (sonic-net#3251) Introduce a new "sflow" container (if ENABLE_SFLOW is set). The new docker will include: hsflowd : host-sflow based daemon is the sFlow agent psample : Built from libpsample repository. Useful in debugging sampled packets/groups. sflowtool : Locally dump sflow samples (e.g. with a in-unit collector) In case of SONiC-VS, enable psample & act_sample kernel modules. VS' syncd needs iproute2=4.20.0-2~bpo9+1 & libcap2-bin=1:2.25-1 to support tc-sample tc-syncd is provided as a convenience tool for debugging (e.g. tc-syncd filter show ...)
This commit adds NTP support for management VRF using L3mdev. Config vrf add mgmt will enable management VRF, enslave the eth0 device to the master device mgmt, stop ntp service in default, restart interfaces-configs and restart ntp service in mgmt-vrf context. Requirement and design are covered in mgmt vrf design document. Signed-off-by: Harish Venkatraman <harish_venkatraman@dell.com>
…form2.0 DellEMC : Platform2.0 API Implementation for Chassis [S6000, S6100, Z9100], Fan [S6000]
…ic-net#3430) Signed-off-by: Mykola Faryma <mykolaf@mellanox.com>
* [DELL] S6100 Support PowerCycle in Last Reboot Reason * handle first time boot properly * S6000 Last Reboot Reason Fix
* Install Iptables rules to set TCPMSS for lo interface * Moved implementation to hostcfgd to maintain at one place
Lldp can not be configured in host environment, so we expose lldpcli command of lldp docker to host for configuring more convenient.
…et#3468) Commits on Aug 15, 2019 [sonic_sfp] Fix global name about sfp module is not defined (sonic-net#53) 04014b6 Commits on Aug 20, 2019 [xcvrd] Fix crashing due to missing fields of some module types (sonic-net#54) c011c73 Remove duplicated sonic_eeprom and create symlink (sonic-net#55) 087593e Commits on Sep 10, 2019 [sfp_base] Raise exceptions (previously was incorrectly returning the… c21507e Added new API to interact with the platform components (sonic-net#60) 33b037d Signed-off-by: Nazarii Hnydyn <nazariig@mellanox.com>
Commits on Sep 10, 2019 [config] Add commands to remove BGP neighbor configuration (sonic-net#625) da5cc8c Commits on Sep 12, 2019 [config] Reset failed status of all SONiC services, whether or not th… b943d67 Commits on Sep 13, 2019 [warm-reboot]: Do not clean up mirror session state database (sonic-net#639) cbcdc82 Commits on Sep 17, 2019 Add SSD Health CLI utility (sonic-net#587) 065414a Fixed config Asym PFC CLI. (sonic-net#632) c1c53f5 Signed-off-by: Nazarii Hnydyn <nazariig@mellanox.com>
…net#3357) * DellEMC S6000 : Platform2.0 API implementation [PSU, Thermal] * Fix invalid number of arguments error * DellEMC S6000 : Platform2.0 [ Thermal ] * DellEMC S6000 : Platform2.0 API [PSU, Thermal] * Updated merge changes
…net#3361) * DellEMC Z9100 : Platform2.0 API implementation [PSU, Thermal] * DellEMC Z9100 : Platform2.0 API [ Thermal ] * DellEMC Z9100 : Platform2.0 API [PSU, Thermal]
* [SNMP] management VRF SNMP support This commit adds SNMP support for Management VRF using l3mdev. The patch included provides VRF support, there is no single "listendevice" configuration, rather multiple agentaddress config options can each have their own "interface" to bind to using "ip%interface". The snmpd.conf file is accordingly generated using the snmp.yml file and redis database info. Adding below the comments of SNMP patch 1376 -------------------------------------------- Since the Linux kernel added support for Virtual Routing and Forwarding (VRF) in version 4.3 (Note: these won't compile on non-linux platforms) https://www.kernel.org/doc/Documentation/networking/vrf.txt Linux users could not use snmpd in its current form to bind specific listening IP addresses to specific VRF devices. A simplified description of a VRF inteface is an interface that is a master (a container of sorts) that collects a set of physicalinterfaces to form a routing table. This set of two patches (one for V5-7-patches and one for V5-8-patches branches) is almost identical to patch single "listendevice" configuration. Rather, multiple agentAddress config options can each have their own "interface" to bind to using the <ip>%<interface> syntax.</interface></ip> ------------------------------------------- Signed-off-by: Harish Venkatraman <harish_venkatraman@dell.com>
…8C8) (sonic-net#3492) * add config.bcm for hlx * modify config.bcm path for hlx * Delete hx4-cel-hbtn-48x1G+4x10G.config.bcm * add config.bcm and path * update led for cxp * Add new device data for dx010
Orchagent is crashing on the latest SONiC images. Issue sonic-net#458 is raised to track the problem. Dynamic port breakout commit 6f40933 introduced this regression. One of the recommendation that we received was to disable the loopback and mgmt ports in bcm config. It was helpful in fixing the issue but not the ideal solution. It works on qfx5210 as the loopback and management configurations are not applicable. While the orchagent crash is being debugged, we need this commit to fix the issue in qfx5210 platform. This patch can be reversed once the correct fix for the orchagent is identified. Signed-off-by: Ciju Rajan K <crajank@juniper.net>
adding 'hostname' field and rename 'socket'
* [libteam]: add special Fast-Reboot teamd stop mode * Fix last packet sending * Update sonic-utilities module
* add led_fw_dir to permitted_list
…il.py (sonic-net#3485) Signed-off-by: brandon_chuang <brandon_chuang@edge-core.com>
* Add hwSku Arista-7280CR3-C40 * Clean empty lines * Fix violation to config_checker * Fix no new line at end
…g quotes (sonic-net#3810) * adding quotes for string comparison with special characters * Update dockers/docker-sonic-telemetry/telemetry.sh Co-Authored-By: Joe LeVeque <jleveque@users.noreply.github.com> * Update dockers/docker-sonic-telemetry/telemetry.sh Co-Authored-By: Joe LeVeque <jleveque@users.noreply.github.com>
…#3808)" (sonic-net#3816) This reverts commit 3d80afa.
…t. (sonic-net#3751) Signed-off-by: Yong Zhao <yozhao@microsoft.com>
… control in swss.sh (sonic-net#3823)
- Updated buffers config; - Set eth2 as CPU port; - Added systemd service file to load bf_fpga.ko Signed-off-by: Andriy Kokhan <akokhan@barefootnetworks.com>
update multiDB changes in sonic-utilities, including earlier commit by others as well: - [multiDB]: all application should use API to get redis_client (sonic-net#753) - [VRF]: submit vrf CLI sonic-net#392 (sonic-net#558) - [show] Add 'features' subcommand to display status for optional features (sonic-net#712) - [neighbor_advertiser] Adds initial support for HTTPS to neighbor advertiser (sonic-net#750) after this update , we are able to update sonic-py-swsssdk submodule without hitting error as before. Signed-off-by: Dong Zhang d.zhang@alibaba-inc.com
Update rules for frr package. Update frr submodule
* Resolve the issue about device can not detected H3C transceiver * Upgrade the SWPS driver of the D6356 and D6356J platform.
samaity
pushed a commit
to samaity/sonic-buildimage
that referenced
this pull request
Aug 22, 2022
* [BFN] Updated platform APIs impl Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com> * Extended BFN platform SFP APIs implementation * Update sfp.py * [BFN] Extended SFP platform plugin implementation Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com> * [BFN] Extended Fans platform plugin implementation * [BFN] divided classes Fan and FanDrawer into 2 files * Signed-off-by: Vadym Yashchenko <vadymx.yashchenko@intel.com> What I did Add get_model() function Add get_low_critical_threshold() function Change __get(...) function. How I did it Differnece from previous implementation of __get(...) function is return real value or -9999.9 if value is not provided by thrift API * Add get_presence() function and revised __get() function Signed-off-by: Vadym Yashchenko <vadymx.yashchenko@intel.com> * [BFN] Updated PSU platform APIs impl Signed-off-by: Dmytro Lytvynenko <dmytrox.lytvynenko@intel.com> * Added BFN PSU cache (sonoble#9) Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com> * [BFN] Fans and Fantray platform APIs update (sonoble#7) * [BFN] Updated SFP platform APIs (sonic-net#10) Signed-off-by: Volodymyr Boyko <volodymyrx.boiko@intel.com> * [BFN] Updated platform API for thermal (sonoble#8) * Signed-off-by: Vadym Yashchenko <vadymx.yashchenko@intel.com> * Revert "[BFN] Fans and Fantray platform APIs update (sonoble#7)" (sonic-net#11) This reverts commit c62a733. * Add support health monitor system (sonic-net#15) Signed-off-by: Petro Bratash <petrox.bratash@intel.com> * Update chassis.py * [BFN] Updated FANs and FAN Tray platform API (sonic-net#14) * Fix fix_alignment (sonic-net#17) Signed-off-by: Petro Bratash <petrox.bratash@intel.com> * [BFN] Improvement show environment (sonic-net#16) * Added PSU temperature skip into platform.json (sonic-net#18) Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com> * Do not skip psud on Newport Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com> * [BFN] fix fan status from Not OK to Ok (sonic-net#19) * [BFN] Updated SFP platform plugin (sonic-net#13) Signed-off-by: Volodymyr Boyko <volodymyrx.boiko@intel.com> * [DPB] Fix typo for Ethernet0 2x200G[100G,40G] breakout mode (sonic-net#21) Signed-off-by: Mykola Gerasymenko <mykolax.gerasymenko@intel.com> * [barefoot] Tmp fix vendor_rev (sonic-net#22) Signed-off-by: Volodymyr Boyko <volodymyrx.boiko@intel.com> * Fixed python issues in sonic_platform/fan_drawer.py Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com> * Updated fan_drawer.py * Fixing trailing white spaces in fan_drawer.py * [BFN] Fix thrift for SFPs API Signed-off-by: Volodymyr Boyko <volodymyrx.boiko@intel.com> * In platform.json, replaced 'false' with '0' to workaround ast.literal_eval() issue Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com> * [Newport] Thermal manager (sonic-net#23) * Signed-off-by: Vadym Yashchenko <vadymx.yashchenko@intel.com> * Revert "In platform.json, replaced 'false' with '0' to workaround ast.literal_eval() issue" This reverts commit 1e73127. * Removed 'controllable' options from platform.json to fix factory default config generation Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com> * Update thermal_manager.py * Migrated SFP plugin to sonic_xcvr API (sonic-net#30) Signed-off-by: Andriy Kokhan <andriyx.kokhan@intel.com> Co-authored-by: KostiantynYarovyiBf <kostiantynx.yarovyi@intel.com> Co-authored-by: Vadym Yashchenko <vadymx.yashchenko@intel.com> Co-authored-by: Dmytro Lytvynenko <dmytrox.lytvynenko@intel.com> Co-authored-by: Volodymyr Boiko <volodymyrx.boiko@intel.com> Co-authored-by: Petro Bratash <petrox.bratash@intel.com> Co-authored-by: Mykola Gerasymenko <mykolax.gerasymenko@intel.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This patch include below items:
Bug42_JD_i2c_issues.txt