This file contains hidden or 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
| # USB-Blaster | |
| BUS=="usb", SYSFS{idVendor}=="09fb", SYSFS{idProduct}=="6001", MODE="0666" | |
| BUS=="usb", SYSFS{idVendor}=="09fb", SYSFS{idProduct}=="6002", MODE="0666" | |
| BUS=="usb", SYSFS{idVendor}=="09fb", SYSFS{idProduct}=="6003", MODE="0666" | |
| # USB-Blaster II | |
| BUS=="usb", SYSFS{idVendor}=="09fb", SYSFS{idProduct}=="6010", MODE="0666" | |
| BUS=="usb", SYSFS{idVendor}=="09fb", SYSFS{idProduct}=="6810", MODE="0666" |
This file contains hidden or 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
| elf2hex --input=xxx.elf --base=0x00020000 --end=0x00040000 --output=xxx.hex --width=32 --no-zero-fill |
This file contains hidden or 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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <netdb.h> | |
| #include <signal.h> | |
| #include <sys/types.h> | |
| #include <sys/socket.h> | |
| #include <netinet/in.h> | |
| #include <fcntl.h> | |
| #include <string.h> |
This file contains hidden or 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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <sys/types.h> | |
| #include <sys/socket.h> | |
| #include <netinet/in.h> | |
| #include <sys/errno.h> | |
| #include <string.h> | |
| #include <arpa/inet.h> | |
| #define SERV_PORT 5134 |
This file contains hidden or 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
| root@xilinx-zcu111-2019_1:~# netopeer2-server -d -v 4 | |
| [INF]: LY: Plugin "/usr/lib/libyang/extensions/metadata.so" successfully loaded. | |
| [INF]: LY: Plugin "/usr/lib/libyang/extensions/yangdata.so" successfully loaded. | |
| [INF]: LY: Plugin "/usr/lib/libyang/extensions/nacm.so" successfully loaded. | |
| [INF]: LY: Plugin "/usr/lib/libyang/user_types/user_yang_types.so" successfully loaded. | |
| [INF]: LY: Plugin "/usr/lib/libyang/user_types/user_inet_types.so" successfully loaded. | |
| [INF]: LY: Reading module "ietf-yang-metadata". | |
| [INF]: LY: Module "ietf-yang-metadata@2016-08-05" successfully parsed as implemented. | |
| [INF]: LY: Reading module "yang". | |
| [INF]: LY: Resolving "yang" unresolved schema nodes and their constraints... |
This file contains hidden or 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
| typedef crl { | |
| type binary; | |
| description | |
| "A CertificateList structure, as specified in RFC 5280, | |
| encoded using ASN.1 distinguished encoding rules (DER), | |
| as specified in ITU-T X.690."; | |
| reference | |
| "RFC 5280: | |
| Internet X.509 Public Key Infrastructure Certificate | |
| and Certificate Revocation List (CRL) Profile |
This file contains hidden or 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
| root@xilinx-zcu111-2019_1:~# netopeer2-server -d -c MSG | |
| [INF]: LY: Plugin "/usr/lib/libyang/extensions/metadata.so" successfully loaded. | |
| [INF]: LY: Plugin "/usr/lib/libyang/extensions/yangdata.so" successfully loaded. | |
| [INF]: LY: Plugin "/usr/lib/libyang/extensions/nacm.so" successfully loaded. | |
| [INF]: LY: Plugin "/usr/lib/libyang/user_types/user_yang_types.so" successfully loaded. | |
| [INF]: LY: Plugin "/usr/lib/libyang/user_types/user_inet_types.so" successfully loaded. | |
| [INF]: LY: Reading module "ietf-yang-metadata". | |
| [INF]: LY: Module "ietf-yang-metadata@2016-08-05" successfully parsed as implemented. | |
| [INF]: LY: Reading module "yang". | |
| [INF]: LY: Resolving "yang" unresolved schema nodes and their constraints... |
This file contains hidden or 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
| root@xilinx-zcu111-2019_1:~# gdb netopeer2-server | |
| GNU gdb (GDB) 8.2 | |
| Copyright (C) 2018 Free Software Foundation, Inc. | |
| License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
| This is free software: you are free to change and redistribute it. | |
| There is NO WARRANTY, to the extent permitted by law. | |
| Type "show copying" and "show warranty" for details. | |
| This GDB was configured as "aarch64-xilinx-linux". | |
| Type "show configuration" for configuration details. | |
| For bug reporting instructions, please see: |
This file contains hidden or 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
| (gdb) r -d -c MSG | |
| The program being debugged has been started already. | |
| Start it from the beginning? (y or n) y | |
| Starting program: /usr/bin/netopeer2-server -d -c MSG | |
| [Thread debugging using libthread_db enabled] | |
| Using host libthread_db library "/lib/libthread_db.so.1". | |
| [INF]: LY: Plugin "/usr/lib/libyang/extensions/metadata.so" successfully loaded. | |
| [INF]: LY: Plugin "/usr/lib/libyang/extensions/yangdata.so" successfully loaded. | |
| [INF]: LY: Plugin "/usr/lib/libyang/extensions/nacm.so" successfully loaded. | |
| [INF]: LY: Plugin "/usr/lib/libyang/user_types/user_yang_types.so" successfully loaded. |
This file contains hidden or 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
| brchiu@APPASSIONATA:/media/brchiu/79918428768101F8/DocCollect/Project$ sudo sysrepo-plugind -d -v 4 | |
| [sudo] password for brchiu: | |
| [WRN]: Removing event pipe "sr_evpipe1" after a crashed subscription. | |
| [INF]: Applying scheduled changes. | |
| [INF]: No scheduled changes. | |
| [INF]: Datastore copied from <startup> to <running>. | |
| [INF]: Session 1 (user "root") created. | |
| [INF]: Triggering "o-ran-software-management" "done" event on enabled data. | |
OlderNewer