Skip to content

tosiara/radxa-rock-lite-ubuntu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

radxa-rock-lite-ubuntu

Build Ubuntu SD card image for Radxa Rock Lite

Based on the following links:

Kernel version: 3.18.140 Ubuntu version: latest 16.04

There is also testing branch for 4.4, but it is currently has no USB and Ethernet support

Build

./build.sh

This will build 5 files:

  • u-boot-sd.img
  • parameter.im
  • boot.img
  • rootfs.ext4
  • radxa-rock-lite-kernel3.18-ubuntu16-sdcard.img

Prepare SD card and flash

dd if=/dev/zero of=/dev/disk/by-id/YOURDISK bs=1M count=1
export START_SECTOR=131072

fdisk /dev/disk/by-id/YOURDISK  << EOF
n
p
1
$START_SECTOR

w
EOF

dd if=radxa-rock-lite-kernel3.18-ubuntu16-sdcard.img of=/dev/disk/by-id/YOURDISK-part1 conv=sync