Alpine Linux
#11
Question 
I have tried it without the possibility with SPI Flash, so only trying to start from SD card. (I am a kernelnewbie)

Currently only the EVB RK3328 is supported on the Rockchip-site, I think that does not work:
http://opensource.rock-chips.com/wiki_Boot_option

U-boot-guide (but i think there is missing the instruction ways for rock64)
https://github.com/qemu/u-boot/blob/mast...E.rockchip

Quote:However i clone the uboot-tree:
git clone https://github.com/u-boot/u-boot

Compile U-boot:
make CROSS_COMPILE=aarch64-linux-gnu- rock64-rk3328_defconfig
make CROSS_COMPILE=aarch64-linux-gnu-

Than i follow this instruction: (https://github.com/u-boot/u-boot/commit/...6e627972a0)
This series allow building u-boot SPL and u-boot.itb for Rock64
board. The proprietary TPL is stil required for deploy:

 ./tools/mkimage -n rk3328 -T rksd \
   -d ./rkbin/bin/rk33/rk3328_ddr_333MHz_v1.16.bin idbloader.img
 cat ./spl/u-boot-spl.bin >> idbloader.img
 dd if=idbloader.img of=/dev/sdcard seek=64 conv=notrunc
 dd if=u-boot.itb of=/dev/sdcard seek=16384 conv=notrunc


Quote:So I did the following:
git clone https://github.com/rockchip-linux/rkbin
./tools/mkimage -n rk3328 -T rksd \
-d ./rkbin/bin/rk33/rk3328_ddr_333MHz_v1.16.bin idbloader.img

./tools/mkimage -n rk3328 -T rksd \
-d ./rkbin/bin/rk33/rk3328_ddr_333MHz_v1.16.bin u-boot.itb

cat ./spl/u-boot-spl.bin >> idbloader.img
dd if=idbloader.img of=/dev/sdcard seek=64 conv=notrunc
dd if=u-boot.itb of=/dev/sdcard seek=16384 conv=notrunc

BUT on https://github.com/qemu/u-boot/blob/mast...E.rockchip there is the following instruction and I do not know what the difference is and why:
Booting from an SD card on Pine64 Rock64 (RK3328)
For Rock64 rk3328 board the following three parts are required:
TPL, SPL, and the u-boot image tree blob.

- Create TPL/SPL image
=> tools/mkimage -n rk3328 -T rksd -d tpl/u-boot-tpl.bin idbloader.img
=> cat spl/u-boot-spl.bin >> idbloader.img

- Write TPL/SPL image at 64 sector
=> sudo dd if=idbloader.img of=/dev/mmcblk0 seek=64

- Write u-boot image tree blob at 16384 sector
=> sudo dd if=u-boot.itb of=/dev/mmcblk0 seek=16384

Quote:I compiled the kernel according to the Alpinelinux manual:
(https://wiki.alpinelinux.org/wiki/DIY_Fu...r_ARM_SOCs)
apt-get -y -qq install git Please make sure you have the following options as follows
KERNEL_ONLY="yes" //compile only kernel, u-boot and other packages and not buid complete OS image
KERNEL_CONFIGURE="yes"  //to include your modules
CLEAN_LEVEL="make,images,debs"
KERNEL_KEEP_CONFIG="yes"

Quote:Create boot.scr
boot.scr contains needed uboot commands for loading kernel, initrd, setting kernel parameters and booting.
To create boot.scr first make a u-boot script boot.cmd with the u-boot commands you need for booting the system:
  • setenv fdt_high ffffffff
  • setenv machid 1029
  • setenv bootargs earlyprintk /boot/vmlinuz-4.6.0-rc1-sunxi modules=loop,squashfs,sd-mod,usb-storage modloop=/boot/modloop-sunxi console=${console}
  • load mmc 0:1 0x43000000 boot/dtbs/sun8i-h3-orangepi-pc.dtb
  • load mmc 0:1 0x41000000 boot/vmlinuz-4.6.0-rc1-sunxi
  • load mmc 0:1 0x45000000 boot/initramfs-sunxi-new
  • bootz 0x41000000 0x45000000 0x43000000
Then translate this to a boot.scr by using the mkimage command
mkimage -C none -A arm -T script -d boot.cmd boot.scr

On https://a-delacruz.github.io/alpine/alpine-linux.html is a good guide for step 7 (Creating Initramfs File) and 8 (Creating modloop File) from the Alpinelinux-guide. I did it that way.

Then I replaced the files and copied everything to the SD card and did all the steps. Finally it does not work, i get no signal over hdmi when I try to boot. Maybe I forgot something or did something wrong. I think u-boot or boot.scr is the problem.

I will try the following instructions, but it would be better if i could only start with SD card: 
https://github.com/ayufan-rock64/linux-b...ash-spi.md

I hope somebody can do it and publish a manual. Confused
  Reply


Messages In This Thread
Alpine Linux - by isndw - 03-22-2018, 02:03 AM
RE: Alpine Linux - by a1w.ca - 03-25-2018, 11:35 PM
RE: Alpine Linux - by isndw - 03-26-2018, 02:45 AM
RE: Alpine Linux - by ebike - 12-28-2018, 07:11 PM
RE: Alpine Linux - by Jame3243324 - 01-03-2019, 09:37 AM
RE: Alpine Linux - by a1w.ca - 01-03-2019, 11:10 PM
RE: Alpine Linux - by ebike - 01-03-2019, 01:17 PM
RE: Alpine Linux - by Jame3243324 - 01-03-2019, 08:08 PM
RE: Alpine Linux - by ebike - 01-03-2019, 11:55 PM
RE: Alpine Linux - by meier - 03-10-2019, 01:30 PM
RE: Alpine Linux - by rock7 - 08-13-2019, 05:25 PM
RE: Alpine Linux - by rock7 - 10-22-2019, 04:09 PM
RE: Alpine Linux - by pix - 08-12-2021, 05:41 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  irradium (based on crux linux) Rock64 riscv64, aarch64 mara 0 141 03-24-2024, 01:07 PM
Last Post: mara
  MIPI-CSI IMX214 on Linux NO SUCCESS zeus666 2 1,736 06-02-2023, 07:52 AM
Last Post: diederik
  Linux 5.15 Kernel - openSuse mark1250 0 1,286 12-02-2021, 04:36 PM
Last Post: mark1250
Lightbulb RK3399 Linux rtl8822cu module bluetooth not working shivarj89 0 1,355 07-29-2021, 07:19 AM
Last Post: shivarj89
Information Linux Mainline ayufan 63 92,206 05-14-2021, 10:41 AM
Last Post: Wizzard
  Linux Images (ROCK64) pineadmin 164 281,284 02-12-2021, 10:14 AM
Last Post: useful64
  Arch Linux Arm --> Kernel 5.8 breaks installation as365n4 12 12,267 08-31-2020, 01:41 AM
Last Post: as365n4
  Arch Linux ARM on the Rock64 V3 justinweiss 2 4,881 08-24-2020, 05:16 PM
Last Post: justinweiss
  Arch Linux Arm - external RTC problem max 1 2,971 08-17-2020, 10:35 AM
Last Post: max
Sad Is there a none-headless Linux OS that really works now for Rock64? AkiraSensei 7 9,583 07-09-2020, 10:02 PM
Last Post: nethammer

Forum Jump:


Users browsing this thread: 1 Guest(s)