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

build mft-kernel binary debian package #36

Merged
merged 2 commits into from
Oct 22, 2016
Merged

Conversation

lguohan
Copy link
Collaborator

@lguohan lguohan commented Oct 20, 2016

No description provided.

tar xzf $MFT_TGZ
pushd $MFT_NAME/SDEBS
dpkg -i $MFT_KERNEL_DEB
TARBALL_PATH=$(dkms mkdriverdisk kernel-mft-dkms/4.5.0 -d ubuntu -k ${KERNELVER} --media tar | grep "Disk image location" | cut -d':' -f2)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dkms mkdriverdisk command creates debian package with architecture x86_64, which yields an error during instalation due to arch mismatch
You can add option -a all to set architecture type to all to allow any arch

MFT_KERNEL_DEB=kernel-mft-dkms_4.5.0-31_all.deb
KERNELVER=3.16.0-4-amd64

[ -e $MFT_TGZ ] || wget http://www.mellanox.com/downloads/MFT/${MFT_TGZ}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wget -N: to detect remote file content updating.

@lguohan
Copy link
Collaborator Author

lguohan commented Oct 21, 2016

updated.

@lguohan lguohan merged commit 7d9fd3c into sonic-net:master Oct 22, 2016
stcheng pushed a commit that referenced this pull request Mar 22, 2017
stcheng pushed a commit that referenced this pull request Mar 22, 2017
 - SNMP/LLDP Containers: Sonic V2 Support (#41)
 - start.sh: Remove rsyslogd.pid file on mlnx syncd docker (#35)
 - check the existence of platforms/ before including it (#37)
 - build mft-kernel binary debian package (#36)
 - Apply swss configuration in a deterministic way (#39)
 - Dockerfile: Add libsaimetadata dependency (#42)
 - Dockerfile: Add bridge-utils to p4 docker (#43)
 - Add docker configuration for saiserver-brcm   (#44)
 - Modification to saiserver-brcm/Dockerfile (#45)
 - Update get_docker-base.sh
...
@lguohan lguohan deleted the mft branch November 6, 2017 04:41
seiferteric referenced this pull request in project-arlo/sonic-buildimage Oct 14, 2019
* Update src/sonic-quagga from branch 'broadcom_sonic'
  to 46a93c34f452b87434913e624f1f9d1052379595
  - Merge 201904 branch to broadcom_sonic branch on Mon Jul  1 13:57:55 PDT 2019
    
    Change-Id: I74f1c79dedbf8edbf3fbacfd2f52df8d75c644a5
    
  - Don't create duplicate dynamic BGP sessions. (#36)
    
    Sometimes dynamic BGP peers setup another TCP connection despite they already have one.
    
    When quagga receives second tcp connection from the same dynamic peer, quagga pick up struct peer structure for the dynamic peer, instead of creating of the new one (because it's dynamic peer, not static).
    
    So quagga has two tcp connections, but they share the same peer structure.
    Later quagga realize that it already has bgp session is created for the peer, and quagga removes the peer structure, but the first connection is still active. The first connection tries to use the removed peer structure and bgpd crashes.
tahmed-dev added a commit to tahmed-dev/sonic-buildimage that referenced this pull request Jan 16, 2020
00410e5 (HEAD, origin/master, origin/HEAD) [mgmt-framework] Update Swagger URL to repo1.maven.org (sonic-net#37)
7562028 Merge pull request sonic-net#36 from Azure/Arlo
cd22b4d (origin/Arlo) Added the certificate check to quiet
7fbcd46 Changed the swagger website to https
5d1041f Added sonic-mgmt-framework deb install to install the contents of sonic-mgmt-framework deb package (sonic-net#30)
229fe69 Added sonic-mgmt-framework deb install to install the contents of sonic-mgmt-framework deb package

signed-off-by: Tamer Ahmed <tamer.ahmed@microsoft.com>
tahmed-dev added a commit to tahmed-dev/sonic-buildimage that referenced this pull request Jan 16, 2020
00410e5 (HEAD, origin/master, origin/HEAD) [mgmt-framework] Update Swagger URL to repo1.maven.org (sonic-net#37)
7562028 Merge pull request sonic-net#36 from Azure/Arlo
cd22b4d (origin/Arlo) Added the certificate check to quiet
7fbcd46 Changed the swagger website to https
5d1041f Added sonic-mgmt-framework deb install to install the contents of sonic-mgmt-framework deb package (sonic-net#30)
229fe69 Added sonic-mgmt-framework deb install to install the contents of sonic-mgmt-framework deb package

signed-off-by: Tamer Ahmed <tamer.ahmed@microsoft.com>
lguohan pushed a commit that referenced this pull request Jan 17, 2020
00410e5 (HEAD, origin/master, origin/HEAD) [mgmt-framework] Update Swagger URL to repo1.maven.org (#37)
7562028 Merge pull request #36 from Azure/Arlo
cd22b4d (origin/Arlo) Added the certificate check to quiet
7fbcd46 Changed the swagger website to https
5d1041f Added sonic-mgmt-framework deb install to install the contents of sonic-mgmt-framework deb package (#30)
229fe69 Added sonic-mgmt-framework deb install to install the contents of sonic-mgmt-framework deb package

signed-off-by: Tamer Ahmed <tamer.ahmed@microsoft.com>
samaity pushed a commit to samaity/sonic-buildimage that referenced this pull request Feb 10, 2020
sonic-net#36)

* [yang-models]: YANG model changes for INTERFACE, VLAN_INTERFACE, LOOPBACK_INTERFACE.

Changes:
1.) YANG model changes to accomodate VRF feature.
2.) Test case addition for new must condition.
3.) Test case changes for old config for INTERFACE and VLAN_INTERFACE.

Signed-off-by: Praveen Chaudhary pchaudhary@linkedin.com

* [yangModelTesting.py]: Test cases for VLAN and Loopback must condition.
madhanmellanox pushed a commit to madhanmellanox/sonic-buildimage that referenced this pull request Mar 23, 2020
- Add g_portSet and g_init global variable to indicate if all the
    host interfaces of the front panel ports are created
- Add VLAN logic to deal with netlink messages related to VLAN
- Bring up front panel port based host interface whenever it is
    created
- Bring up VLAN interfaces whenever vlan_interfaces file is provided
    after all front panel port based host interfaces are created
dmytroxshevchuk pushed a commit to dmytroxshevchuk/sonic-buildimage that referenced this pull request Aug 31, 2020
vdahiya12 pushed a commit to vdahiya12/sonic-buildimage that referenced this pull request Oct 2, 2020
There was a problem with the abbreviated type name fetching if the xcvr
was OSFP. This commit fixes the issue.
xumia referenced this pull request in xumia/sonic-buildimage-1 Feb 16, 2021
SuvarnaMeenakshi pushed a commit to SuvarnaMeenakshi/sonic-buildimage that referenced this pull request Jun 16, 2021
mlok-nokia pushed a commit to mlok-nokia/sonic-buildimage that referenced this pull request Jan 24, 2022
SuvarnaMeenakshi pushed a commit to SuvarnaMeenakshi/sonic-buildimage that referenced this pull request Mar 16, 2022
Fix init_sync_d_lag_tables(): supports empty LAG member
Fix init_sync_d_lag_tables(): if_name_lag_name_map behaves as comments
Add test case for LAG interfaces
lguohan pushed a commit that referenced this pull request Mar 18, 2022
f00efef Longxiang Lyu Wed Mar 16 09:12:46 2022 +0800 Add a command line option to store logs into a separate file (#41)
ff2e67d Longxiang Lyu Tue Mar 15 09:10:59 2022 +0800 Add default port cable type (#39)
ebbb4d8 Jing Zhang Mon Mar 14 15:41:11 2022 -0700 Prevent switching MUX to "Unknown" (#36)
c779b8f Longxiang Lyu Thu Mar 10 21:35:11 2022 +0800 [nonfunctional] Use LinkProberStateMachineBase (#38)
b9fedd0 Longxiang Lyu Wed Mar 9 13:03:58 2022 +0800 [NONFUNCTIONAL] Add LinkProberStateMachineBase (#37)
bedd42b Longxiang Lyu Wed Mar 9 10:03:00 2022 +0800 Add .clang-format file to format code (#28)
9fe4fc6 Guohan Lu Thu Mar 3 17:51:43 2022 -0800 [doc]: add lgtm badge in README.md
c1249d9 Longxiang Lyu Wed Mar 2 18:05:18 2022 +0800 Enable lgtm (#33)
b8514c6 Longxiang Lyu Wed Mar 2 13:34:39 2022 +0800 Collect port cable type to use corresponding state machine (#31)
9b59ef9 Longxiang Lyu Wed Mar 2 07:19:33 2022 +0800 Improve make clean (#32)
lguohan pushed a commit that referenced this pull request Mar 21, 2022
ca4b9a1 Guohan Lu Thu Mar 3 17:51:43 2022 -0800 [doc]: add lgtm badge in README.md
00c9b21 Longxiang Lyu Wed Mar 2 18:05:18 2022 +0800 Enable lgtm (#33)
3ae9be4 Longxiang Lyu Wed Mar 2 07:19:33 2022 +0800 Improve make clean (#32)
6997a1f Longxiang Lyu Wed Mar 9 10:03:00 2022 +0800 Add .clang-format file to format code (#28)
3368182 Jing Zhang Mon Mar 14 15:41:11 2022 -0700 Prevent switching MUX to "Unknown" (#36)
sg893052 pushed a commit to sg893052/sonic-buildimage that referenced this pull request Apr 25, 2022
mssonicbld pushed a commit to mssonicbld/sonic-buildimage that referenced this pull request Jul 20, 2022
zbud-msft added a commit to zbud-msft/sonic-buildimage that referenced this pull request Oct 6, 2022
zbud-msft added a commit to zbud-msft/sonic-buildimage that referenced this pull request Oct 6, 2022
lguohan pushed a commit that referenced this pull request Apr 2, 2023
67a3bdf show counters wrong cli output fixed (#36)
5b3eea1 Update package cache, and bail on the first error (#35)
1d221b0 dhcpv6 relay UT code coverage improve (#32)
514b084 dhcpv6 packet handling code refine (#30)

Signed-off-by: Vivek Reddy <vkarri@nvidia.com>
shanshri pushed a commit to shanshri/sonic-buildimage-sonic-net that referenced this pull request Oct 24, 2023
mssonicbld added a commit that referenced this pull request Apr 13, 2024
…tomatically (#18665)

#### Why I did it
src/sonic-platform-pde
```
* 8b44c3c - (HEAD -> master, origin/master, origin/HEAD) Merge pull request #36 from sg893052/PL_PDE_BOOKWORM_MIGRATION (27 hours ago) [賓少鈺]
* 9f7ac0f - PDE Migration to bookworm (2 weeks ago) [sg893052]
```
#### How I did it
#### How to verify it
#### Description for the changelog
mlok-nokia pushed a commit to mlok-nokia/sonic-buildimage that referenced this pull request Jun 5, 2024
[code sync] Merge code from sonic-net/sonic-buildimage:202205 to 202205
MuLinForest pushed a commit to MuLinForest/sonic-buildimage that referenced this pull request Aug 6, 2024
…test_sfp

JIRA-JRTC-19277: [sonic-mgmt][Pytest][sfp] Failed in 202311.0 regress…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants