Skip to content

[baseimage]: add screen package#1644

Merged
lguohan merged 1 commit intosonic-net:masterfrom
lguohan:screen
Apr 26, 2018
Merged

[baseimage]: add screen package#1644
lguohan merged 1 commit intosonic-net:masterfrom
lguohan:screen

Conversation

@lguohan
Copy link
Collaborator

@lguohan lguohan commented Apr 26, 2018

- What I did
add screen package into base image

https://packages.debian.org/jessie/screen

Architecture Package Size Installed Size Files
amd64 555.7 kB 908.0 kB [list of files]

- How I did it

- How to verify it

- Description for the changelog

- A picture of a cute animal (not mandatory but encouraged)

@lguohan lguohan merged commit d269263 into sonic-net:master Apr 26, 2018
vivekrnv added a commit to vivekrnv/sonic-buildimage that referenced this pull request Nov 23, 2021
a0bff26 [acl-loader] modify acl-loader with change in STATE DB ACL capability table (sonic-net#1896)
a395e28 [debug dump util] Changes for EVPN and VxLAN dump module (sonic-net#1892)
02a98ef [debug dump util] Route Module added (sonic-net#1913)
ac8382f [generic-config-updater] Logging change just before applying it (sonic-net#1934)
9ab6c51 [flex counter] Flex counter threads consume too much CPU resources. sonic-net#9202 (sonic-net#1925)
2ec47a5 [generic-config-updater] Handling empty tables while sorting a patch (sonic-net#1923)
fdedcbf [fdbshow]: Handle FDB cleanup gracefully. (sonic-net#1926)
e7535ae [sonic-cli-gen] first phase implementation of the SONiC CLI Auto-generation tool (sonic-net#1644)

Signed-off-by: Vivek Reddy Karri <vkarri@nvidia.com>
lguohan pushed a commit that referenced this pull request Nov 24, 2021
a0bff26 [acl-loader] modify acl-loader with change in STATE DB ACL capability table (#1896)
a395e28 [debug dump util] Changes for EVPN and VxLAN dump module (#1892)
02a98ef [debug dump util] Route Module added (#1913)
ac8382f [generic-config-updater] Logging change just before applying it (#1934)
9ab6c51 [flex counter] Flex counter threads consume too much CPU resources. #9202 (#1925)
2ec47a5 [generic-config-updater] Handling empty tables while sorting a patch (#1923)
fdedcbf [fdbshow]: Handle FDB cleanup gracefully. (#1926)
e7535ae [sonic-cli-gen] first phase implementation of the SONiC CLI Auto-generation tool (#1644)

Signed-off-by: Vivek Reddy Karri <vkarri@nvidia.com>
taras-keryk pushed a commit to taras-keryk/sonic-buildimage that referenced this pull request Apr 28, 2022
…ration tool (sonic-net#1644)

What I did
Implemented the sonic-cli-gen according to the SONiC CLI Auto-generation HLD

How I did it
How the sonic-cli-gen works:

Parse provided YANG model to the intermediate representation - python dictionary (you can find the structure in the sonic_cli_gen/yang_parser.py file).
Pass the python dictionary to the appropriate j2 template (config or show) and generate the CLI plugin.
Put the auto-generated CLI plugin to an appropriate location, where it can be discovered by SONiC CLI.
How to verify it
Check the file with unit tests - tests/cli_autogen_yang_parser_test.py

Command output
admin@sonic: sonic-cli-gen generate config sonic-acl
Loaded below Yang Models
['sonic-acl', 'sonic-breakout_cfg', 'sonic-crm', 'sonic-device_metadata', 'sonic-device_neighbor', 'sonic-extension', 'sonic-flex_counter', 'sonic-interface', 'sonic-loopback-interface', 'sonic-port', 'sonic-portchannel', 'sonic-types', 'sonic-versions', 'sonic-vlan', 'sonic-vrf']
Note: Below table(s) have no YANG models:
COPP_GROUP, COPP_TRAP, FEATURE, KDUMP, MGMT_INTERFACE, SNMP, SNMP_COMMUNITY, WJH, WJH_CHANNEL, 
INFO:sonic-cli-gen: Auto-generation successful! Location: /usr/local/lib/python3.7/dist-packages/config/plugins/auto/sonic-acl_yang.py
admin@sonic: sonic-cli-gen remove config sonic-acl
/usr/local/lib/python3.7/dist-packages/config/plugins/auto/sonic-acl_yang.py was removed.
mssonicbld added a commit that referenced this pull request Aug 27, 2025
…tically (#23334)

#### Why I did it
src/sonic-sairedis
```
* 7c435771 - (HEAD -> master, origin/master, origin/HEAD) Add missing <array> include to TestSyncdBrcm.cpp (#1632) (2 days ago) [Saikrishna Arcot]
* 80daaa3d - Support for platforms based on Clounix net device (#1618) (2 days ago) [LongWuuu]
* d5a9128a - Ignore SAI_TUNNEL_ATTR_ENCAP_TTL_MODE not implemented error during 202411->202505 warm-upgrade (#1644) (4 days ago) [Ryangwaite]
* 803973ab - Revert "update docker sonic test (#1639)" (#1643) (7 days ago) [jingwenxie]
* a600170d - update docker sonic test (#1639) (2 weeks ago) [jingwenxie]
* 3217d783 - Update SAI to include macsec POST API headers (#1628) (3 weeks ago) [senthil-nexthop]
* d500ae72 - [trim]: Add Packet Trimming Drop Counters to VS lib (#1630) (3 weeks ago) [Nazarii Hnydyn]
* 465bdced - VPP: Update UN_PERF to UN. (#1634) (4 weeks ago) [dypet]
* 0b8ccb1a - [Xsight] update config_syncd_xsight() (#1607) (5 weeks ago) [Eran Dahan]
* 4a96de71 - Temp workaround for sonic-buildimage issue 23387 (#1629) (5 weeks ago) [veronica-arista]
* 2e9c8563 - Use container registry when running tests (#1635) (5 weeks ago) [Saikrishna Arcot]
* ed738699 - Updated SAI version to 1.16.3. (#1631) (5 weeks ago) [mramezani95]
* dcf7573f - Allow missing SAI_MY_SID_ENTRY_ATTR_ENDPOINT_BEHAVIOR_FLAVOR. (#1597) (5 weeks ago) [dypet]
* 5bf346fe - fix the BFD tests for VPP (#1617) (5 weeks ago) [aronovic]
* 7bb53263 - (origin/sai_query_stats_st_capability) Exclude sonic-vpp sai code from code coverage check (#1622) (6 weeks ago) [yue-fred-gao]
* fb5652bd - [meta] do not fail bulk operations if MODE_IGNORE_ERROR (#1613) (6 weeks ago) [Nikola Dancejic]
```
#### How I did it
#### How to verify it
#### Description for the changelog
FengPan-Frank pushed a commit to FengPan-Frank/sonic-buildimage that referenced this pull request Dec 4, 2025
…tically (sonic-net#23334)

#### Why I did it
src/sonic-sairedis
```
* 7c435771 - (HEAD -> master, origin/master, origin/HEAD) Add missing <array> include to TestSyncdBrcm.cpp (sonic-net#1632) (2 days ago) [Saikrishna Arcot]
* 80daaa3d - Support for platforms based on Clounix net device (sonic-net#1618) (2 days ago) [LongWuuu]
* d5a9128a - Ignore SAI_TUNNEL_ATTR_ENCAP_TTL_MODE not implemented error during 202411->202505 warm-upgrade (sonic-net#1644) (4 days ago) [Ryangwaite]
* 803973ab - Revert "update docker sonic test (sonic-net#1639)" (sonic-net#1643) (7 days ago) [jingwenxie]
* a600170d - update docker sonic test (sonic-net#1639) (2 weeks ago) [jingwenxie]
* 3217d783 - Update SAI to include macsec POST API headers (sonic-net#1628) (3 weeks ago) [senthil-nexthop]
* d500ae72 - [trim]: Add Packet Trimming Drop Counters to VS lib (sonic-net#1630) (3 weeks ago) [Nazarii Hnydyn]
* 465bdced - VPP: Update UN_PERF to UN. (sonic-net#1634) (4 weeks ago) [dypet]
* 0b8ccb1a - [Xsight] update config_syncd_xsight() (sonic-net#1607) (5 weeks ago) [Eran Dahan]
* 4a96de71 - Temp workaround for sonic-buildimage issue 23387 (sonic-net#1629) (5 weeks ago) [veronica-arista]
* 2e9c8563 - Use container registry when running tests (sonic-net#1635) (5 weeks ago) [Saikrishna Arcot]
* ed738699 - Updated SAI version to 1.16.3. (sonic-net#1631) (5 weeks ago) [mramezani95]
* dcf7573f - Allow missing SAI_MY_SID_ENTRY_ATTR_ENDPOINT_BEHAVIOR_FLAVOR. (sonic-net#1597) (5 weeks ago) [dypet]
* 5bf346fe - fix the BFD tests for VPP (sonic-net#1617) (5 weeks ago) [aronovic]
* 7bb53263 - (origin/sai_query_stats_st_capability) Exclude sonic-vpp sai code from code coverage check (sonic-net#1622) (6 weeks ago) [yue-fred-gao]
* fb5652bd - [meta] do not fail bulk operations if MODE_IGNORE_ERROR (sonic-net#1613) (6 weeks ago) [Nikola Dancejic]
```
#### How I did it
#### How to verify it
#### Description for the changelog

Signed-off-by: Feng Pan <fenpan@microsoft.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants