-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
248 additions
and
250 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
Upgrade to v2.1.1 from v2.0.x | ||
------------------------------------------------------------------------------------ | ||
|
||
### Boot and login root user | ||
|
||
root'password is "admin". | ||
|
||
```console | ||
debian-fpga login: root | ||
Password: | ||
root@debian-fpga:~# | ||
``` | ||
|
||
### Download FPGA-SoC-Linux v2.1.1 | ||
|
||
```console | ||
root@debian-fpga:~# wget https://github.com/ikwzm/FPGA-SoC-Linux/archive/refs/tags/v2.1.1.tar.gz | ||
root@debian-fpga:~# tar xfz v2.1.1.tar.gz | ||
root@debian-fpga:~# cd FPGA-SoC-Linux-v2.1.1 | ||
``` | ||
|
||
### Backup /mnt/boot/uEnv.txt | ||
|
||
```console | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp /mnt/boot/uEnv.txt /mnt/boot/uEnv.txt.org | ||
``` | ||
|
||
### Install files for Booting | ||
|
||
#### ZYBO | ||
|
||
```console | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp vmlinuz-5.10.109-armv7-fpga /mnt/boot | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp target/zynq-zybo/boot/* /mnt/boot | ||
``` | ||
|
||
#### PYNQ | ||
|
||
```console | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp vmlinuz-5.10.109-armv7-fpga /mnt/boot | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp target/zynq-pynqzq/boot/* /mnt/boot | ||
``` | ||
|
||
#### ZYBO-Z7 | ||
|
||
```console | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp vmlinuz-5.10.109-armv7-fpga /mnt/boot | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp target/zynq-zybo-z7/boot/* /mnt/boot | ||
``` | ||
|
||
#### DE0-Nano-SoC | ||
|
||
```console | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp vmlinuz-5.10.109-armv7-fpga /mnt/boot | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp target/de0-nano-soc/boot/* /mnt/boot | ||
``` | ||
|
||
#### DE10-Nano | ||
|
||
```console | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp vmlinuz-5.10.109-armv7-fpga /mnt/boot | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp target/de10-nano/boot/* /mnt/boot | ||
``` | ||
|
||
### Setup /mnt/boot/uEnv.txt | ||
|
||
If /mnt/boot/uEnv.txt.org has its own settings, please reflect it in the new /mnt/boot/uEnv.txt. | ||
|
||
### Copy Debian Packages to /home/fpga/debian | ||
|
||
```console | ||
root@debian-fpga:~/FPGA-SoC-Linux-v2.1.1# cp *.deb /home/fpga/debian | ||
``` | ||
|
||
### Install Kernel Image and Device Drivers | ||
|
||
[doc/install/device-drivers.md](device-drivers.md) | ||
|
||
### Upgrade to Debian 11.3 | ||
|
||
```console | ||
root@debian-fpga:~# apt update -y | ||
root@debian-fpga:~# apt upgrade -y | ||
``` | ||
|
Oops, something went wrong.