chromeveyron build script

This commit is contained in:
parazyd 2016-05-01 23:25:33 +02:00
parent 81e0db08c4
commit 8cced382a0
No known key found for this signature in database
GPG Key ID: B876CB44FA1B0274
6 changed files with 6285 additions and 1 deletions

View File

@ -59,6 +59,7 @@ and one of the following devices:
* `cubieboard2` - Cubieboard 2
* `cubietruck` - Cubietruck
* `chromeacer` - Acer ARM Chromebook
* `chromeveyron` - Veyron ARM Chromebook (RK3288)
* `odroidxu` - ODROID-XU
* `bbb`- BeagleBone Black

View File

@ -40,6 +40,7 @@ init() {
"cubieboard2" "$R/arm/scripts/cubieboard2.sh"
"cubietruck" "$R/arm/scripts/cubietruck.sh"
"chromeacer" "$R/arm/scripts/chromebook-acer.sh"
"chromeveyron" "$R/arm/scripts/chromebook-veyron.sh"
"odroidxu" "$R/arm/scripts/odroid-xu.sh"
"bbb" "$R/arm/scripts/beaglebone-black.sh"
)

File diff suppressed because it is too large Load Diff

View File

@ -363,6 +363,11 @@ ${device_name}-pack-image() {
sleep 4
[[ $gpt == 0 ]] || {
sudo cgpt repair $loopdevice
sleep 4
}
sudo kpartx -dv $loopdevice
[[ $? = 0 ]] || error "kpartx failed to remove $loopdevice"
sudo losetup -d $loopdevice

2192
arm/scripts/chromebook-veyron.sh Executable file

File diff suppressed because it is too large Load Diff

2
config
View File

@ -2,7 +2,7 @@
#
# ARM SDK configuration
# add here the info of the toolchain you are using
# add here the info of the toolchain and qemu you are using
# Devuan official toolchain
compiler="arm-none-eabi-"