You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
693 B
32 lines
693 B
10 years ago
|
#!/bin/bash
|
||
|
# --dtb A20-OLinuXino-Lime (Olimex Ltd: A20-OLinuXino-Lime:wip)
|
||
|
|
||
|
#Bootloader:
|
||
|
conf_board="A20-OLinuXino-Lime"
|
||
|
conf_bl_http="https://rcn-ee.net/deb/tools/latest"
|
||
|
conf_bl_listfile="bootloader-ng"
|
||
|
|
||
|
#Bootloader Partition:
|
||
|
conf_boot_fstype="ext2"
|
||
|
|
||
|
bootloader_location="dd_uboot_boot"
|
||
|
dd_uboot_bs="1024"
|
||
|
dd_uboot_seek="8"
|
||
|
unset spl_name
|
||
|
boot_name="u-boot.sunxi"
|
||
|
|
||
|
#Bootloader: u-boot features:
|
||
|
conf_config_distro_defaults="enable"
|
||
|
|
||
|
#Kernel:
|
||
|
#https://rcn-ee.net/deb/wheezy-armhf/LATEST-armv7
|
||
|
kernel_subarch="armv7"
|
||
|
#kernel_repo="STABLE"
|
||
|
kernel_repo="TESTING"
|
||
|
dtb="sun7i-a20-olinuxino-lime.dtb"
|
||
|
usbnet_mem=
|
||
|
|
||
|
SERIAL="ttyS0"
|
||
|
SERIAL_CONSOLE="${SERIAL},115200n8"
|
||
|
di_serial_mode="enable"
|