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
| [sean@godwin u-boot]$ git checkout 8d5d3bc | |
| HEAD is now at 8d5d3bcf3c Merge branch '2020-04-16-master-imports' | |
| [sean@godwin u-boot]$ make clean | |
| CLEAN examples/standalone | |
| CLEAN tools | |
| CLEAN tools/lib tools/common | |
| CLEAN spl/arch spl/board spl/cmd spl/common spl/disk spl/drivers spl/dts spl/env spl/fs spl/lib spl/u-boot.cfg spl/u-boot-spl spl/u-boot-spl.bin spl/u-boot-spl.lds spl/u-boot-spl.map spl/u-boot-spl-nodtb.bin | |
| CLEAN u-boot u-boot.bin u-boot.cfg u-boot.cfg.configs u-boot.img u-boot.itb u-boot.its u-boot.lds u-boot.map u-boot-nodtb.bin u-boot.srec u-boot.sym System.map | |
| [sean@godwin u-boot]$ make qemu-riscv64_spl_defconfig | |
| HOSTCC scripts/basic/fixdep |
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
| ==> Making package: rankcheck 1.5.2-2 (Tue 05 May 2020 03:37:44 PM EDT) | |
| ==> Checking runtime dependencies... | |
| ==> Checking buildtime dependencies... | |
| ==> Retrieving sources... | |
| -> Downloading v1.5.2.tar.gz... | |
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 125 100 125 0 0 726 0 --:--:-- --:--:-- --:--:-- 722 | |
| 100 205k 0 205k 0 0 525k 0 --:--:-- --:--:-- --:--:-- 525k | |
| -> Downloading rankcheck.dat... |
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
| $ makepkg -f | |
| ==> Making package: rankcheck 1.5.2-2 (Tue 05 May 2020 03:39:11 PM EDT) | |
| ==> Checking runtime dependencies... | |
| ==> Checking buildtime dependencies... | |
| ==> Retrieving sources... | |
| -> Found v1.5.2.tar.gz | |
| -> Found rankcheck.dat | |
| -> Found tinyfiledialogs-3.4.3.zip | |
| ==> Validating source files with md5sums... | |
| v1.5.2.tar.gz ... Passed |
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
| $ makepkg | |
| ==> Making package: rankcheck 1.5.2-2 (Tue 05 May 2020 03:40:20 PM EDT) | |
| ==> Checking runtime dependencies... | |
| ==> Checking buildtime dependencies... | |
| ==> Retrieving sources... | |
| -> Downloading v1.5.2.tar.gz... | |
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 100 125 100 125 0 0 925 0 --:--:-- --:--:-- --:--:-- 925 | |
| 100 205k 0 205k 0 0 567k 0 --:--:-- --:--:-- --:--:-- 567k |
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
| P: /devices/pci0000:00/0000:00:08.1/0000:28:00.3/usb3/3-1 | |
| N: bus/usb/003/003 | |
| L: 0 | |
| E: DEVPATH=/devices/pci0000:00/0000:00:08.1/0000:28:00.3/usb3/3-1 | |
| E: DEVNAME=/dev/bus/usb/003/003 | |
| E: DEVTYPE=usb_device | |
| E: DRIVER=usb | |
| E: PRODUCT=403/6010/500 | |
| E: TYPE=0/0/0 | |
| E: BUSNUM=003 |
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
| module foo #( | |
| parameter BAR = 16, | |
| parameter BAZ = 8, | |
| ) ( | |
| input [BAR - 1:0] bar, | |
| output [BAZ - 1:0] baz, | |
| ); | |
| /* ... */ | |
| endmodule |
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
| module foo #( | |
| parameter BAR = 16, | |
| parameter BAZ = 8, | |
| ) ( | |
| input [BAR - 1:0] bar, | |
| output [BAZ - 1:0] baz, | |
| ); | |
| /* ... */ | |
| endmodule |
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
| module add_pipe #( | |
| parameter WIDTH = 64, | |
| parameter SLICE_WIDTH = 16, | |
| ) ( | |
| input clk, | |
| input carry_in, | |
| input [0 +: WIDTH] x, y, | |
| output [0 +: WIDTH] z, | |
| output carry_out, | |
| ); |
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
| module add_pipe #( | |
| parameter WIDTH = 64, | |
| parameter SLICE_WIDTH = 16, | |
| ) ( | |
| input clk, | |
| input carry_in, | |
| input [0 +: WIDTH] x, y, | |
| output [0 +: WIDTH] z, | |
| output carry_out, | |
| ); |
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
| module add_pipe #( | |
| parameter WIDTH = 64, | |
| parameter SLICE_WIDTH = 16, | |
| ) ( | |
| input clk, | |
| input carry_in, | |
| input [0 +: WIDTH] x, y, | |
| output [0 +: WIDTH] z, | |
| output carry_out, | |
| ); |