Difference between revisions of "Rockpi4/dev/u-boot/es es"
Line 9: | Line 9: | ||
=Compilar U-boot y ejecutarlo en ROCK Pi4= | =Compilar U-boot y ejecutarlo en ROCK Pi4= | ||
− | === | + | === Requisitos === |
− | * ROCK Pi 4 | + | * Placa ROCK Pi 4 |
− | * | + | * Una memoria EMMC o una tarjeta microSD |
− | * | + | * Un transformador |
− | * '''USB | + | * '''Un cable USB Macho A a Macho A'''(importante) el USB-C se ha visto que no funciona, un adaptador de USB-C a USB-A ha funcionado. [https://forum.radxa.com/t/otg-flashing-not-working/717 Ver discusión]. |
− | * | + | * Un PC/portátil que ejecute Linux |
− | == | + | ==Paso 1 Obtener el código fuente == |
− | + | Necesitas Git para obtener mútiples repositorios git para compilar la imagen. | |
− | + | Instala Git si no lo tienes. | |
sudo apt-get update | sudo apt-get update | ||
sudo apt-get install git | sudo apt-get install git | ||
− | + | Clona el código fuente | |
git clone --recursive https://github.com/radxa/rockchip-bsp.git | git clone --recursive https://github.com/radxa/rockchip-bsp.git | ||
− | + | Tendrás entonces | |
build kernel README.md rkbin rootfs u-boot | build kernel README.md rkbin rootfs u-boot | ||
− | + | Instrucciones sobre el uso de los Directorios: | |
* build: | * build: | ||
− | ** | + | ** Contiene algunos ficheros de script y algunos ficheros de construccion de u-boot, del kernel y de rootfs. |
* kernel: | * kernel: | ||
− | ** | + | ** Contiene el código fuente del núcleo, la versión actual es 4.4 |
* rkbin: | * rkbin: | ||
− | ** | + | ** Contiene los binarios precompilados de Rockchip, incluido el cargador de primera etapa y el ATF(Arm Trustzone Firmware). |
* rootfs: | * rootfs: | ||
− | ** Bootstrap | + | ** Contiene un Bootstrap rootfs con base Debian, soporta arquitecturas armhf y arm64, soporta Debian Jessie y Stretch. |
* u-boot: | * u-boot: | ||
− | ** u-boot | + | ** Contiene u-boot como segunda etapa del cargador de inicio |
− | == | + | ==Paso 2 Instalar el tool-chain y otras herramientas== |
sudo apt-get install gcc-aarch64-linux-gnu device-tree-compiler libncurses5 libncurses5-dev build-essential libssl-dev mtools | sudo apt-get install gcc-aarch64-linux-gnu device-tree-compiler libncurses5 libncurses5-dev build-essential libssl-dev mtools |
Revision as of 07:38, 20 October 2019
ROCK Pi 4 > Desarrollando > U-boot
Contents
Compilar U-boot y ejecutarlo en ROCK Pi4
Requisitos
- Placa ROCK Pi 4
- Una memoria EMMC o una tarjeta microSD
- Un transformador
- Un cable USB Macho A a Macho A(importante) el USB-C se ha visto que no funciona, un adaptador de USB-C a USB-A ha funcionado. Ver discusión.
- Un PC/portátil que ejecute Linux
Paso 1 Obtener el código fuente
Necesitas Git para obtener mútiples repositorios git para compilar la imagen.
Instala Git si no lo tienes.
sudo apt-get update sudo apt-get install git
Clona el código fuente
git clone --recursive https://github.com/radxa/rockchip-bsp.git
Tendrás entonces
build kernel README.md rkbin rootfs u-boot
Instrucciones sobre el uso de los Directorios:
- build:
- Contiene algunos ficheros de script y algunos ficheros de construccion de u-boot, del kernel y de rootfs.
- kernel:
- Contiene el código fuente del núcleo, la versión actual es 4.4
- rkbin:
- Contiene los binarios precompilados de Rockchip, incluido el cargador de primera etapa y el ATF(Arm Trustzone Firmware).
- rootfs:
- Contiene un Bootstrap rootfs con base Debian, soporta arquitecturas armhf y arm64, soporta Debian Jessie y Stretch.
- u-boot:
- Contiene u-boot como segunda etapa del cargador de inicio
Paso 2 Instalar el tool-chain y otras herramientas
sudo apt-get install gcc-aarch64-linux-gnu device-tree-compiler libncurses5 libncurses5-dev build-essential libssl-dev mtools sudo apt-get install bc python dosfstools
To build rkdeveloptool on a debain based Linux distribution, follow the instruction below:
Install build dependecy:
sudo apt-get install libudev-dev libusb-1.0-0-dev dh-autoreconf
Clone the source code and build:
git clone https://github.com/rockchip-linux/rkdeveloptool cd rkdeveloptool autoreconf -i ./configure make
If you encounter compile error like below
./configure: line 4269: syntax error near unexpected token `LIBUSB1,libusb-1.0' ./configure: line 4269: `PKG_CHECK_MODULES(LIBUSB1,libusb-1.0)'
You should install pkg-config libusb-1.0
sudo apt-get install pkg-config libusb-1.0
Then re-run
autoreconf -i ./configure make
Now you have rkdeveloptool executable at the current directory.
sudo cp rkdeveloptool /usr/local/bin/
Step 3 Build U-boot
- If you use the ROCK Pi4 A
./build/mk-uboot.sh rockpi4a
- If you use the ROCK Pi4B
./build/mk-uboot.sh rockpi4b
And then you can get the directory 'out'.
Flash and run U-boot on ROCK Pi4
Insert a empty EMMC module or microSD card on your ROCK Pi4
Use the USB Male A to Male A cable to connected your PC and ROCK Pi4 and then type
rkdeveloptool ld
You can see the output just like this
DevNo=1 Vid=0x2207,Pid=0x330c,LocationID=302 Maskrom
You can useing this command to flash U-boot
cd ./out/u-boot sudo rkdeveloptool db ../../rkbin/bin/rk33/rk3399_loader_v1.12.112.bin sudo rkdeveloptool wl 0x40 idbloader.img sudo rkdeveloptool wl 0x4000 uboot.img sudo rkdeveloptool wl 0x6000 trust.img sudo rkdeveloptool rd
The U-boot were run on your ROCK Pi4 try to type 'help' or '?' to getting started!