diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-03-02 02:47:37 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-03-02 02:47:37 -0300 |
commit | 3cc20cbac18f7e65b50643cd3a25be2211a76e9a (patch) | |
tree | 0e64f115078e2457ead05d2f1282b3900eccc3ad /libre/uboot-cubox | |
parent | f303ce805abe78bcbab81704bc0d4ad4d0fb8d61 (diff) | |
download | abslibre-3cc20cbac18f7e65b50643cd3a25be2211a76e9a.tar.gz abslibre-3cc20cbac18f7e65b50643cd3a25be2211a76e9a.tar.bz2 abslibre-3cc20cbac18f7e65b50643cd3a25be2211a76e9a.zip |
uboot-cubox: add new package to [libre]
Diffstat (limited to 'libre/uboot-cubox')
-rw-r--r-- | libre/uboot-cubox/PKGBUILD | 26 | ||||
-rw-r--r-- | libre/uboot-cubox/boot.txt | 12 |
2 files changed, 38 insertions, 0 deletions
diff --git a/libre/uboot-cubox/PKGBUILD b/libre/uboot-cubox/PKGBUILD new file mode 100644 index 000000000..42614682e --- /dev/null +++ b/libre/uboot-cubox/PKGBUILD @@ -0,0 +1,26 @@ +# U-Boot: CuBox (Dove) +# Maintainer: André Silva <emulatorman@parabola.nu> + +buildarch=4 + +pkgname=uboot-cubox +pkgver=2009.08 +pkgrel=1.parabola1 +pkgdesc="U-Boot for CuBox (Dove)" +arch=('armv7h') +url="https://projects.parabola.nu/abslibre.git/" +license=('GPL') +makedepends=('uboot-tools') +depends=('linux-libre') +replaces=('uboot-cubox-linux-libre') +conflicts=('uboot4extlinux-cubox' 'uboot4grub-cubox') +backup=('boot/boot.scr') +_commit=814386d3e43b8ab8d81f04aa7fe402952503d8fe +source=('boot.txt') +md5sums=('02356c39d1e254e3f64c016be3895191') + +package() { + mkimage -A arm -O linux -T script -C none -n "Boot script" -d boot.txt boot.scr + mkdir -p "${pkgdir}"/boot + cp boot.scr "${pkgdir}"/boot +} diff --git a/libre/uboot-cubox/boot.txt b/libre/uboot-cubox/boot.txt new file mode 100644 index 000000000..348639632 --- /dev/null +++ b/libre/uboot-cubox/boot.txt @@ -0,0 +1,12 @@ +echo ======== Starting boot ======== +usb start +setenv uimagearg 'uImage' +setenv uinitarg 'uInitrd' +setenv my1arg 'console=ttyS0,115200n8 console=tty1,115200n8' +setenv my2arg 'vmalloc=384M video=dovefb:lcd0:1280x720-32@60-edid clcd.lcd0_enable=1 clcd.lcd1_enable=0' +ext2load ide 0:1 0x04000000 /boot/${uinitarg} && ext2load ide 0:1 0x02000000 /boot/${uimagearg} && setenv bootargs ${my1arg} ${my2arg} 'root=/dev/sda1 rw rootwait' && bootm 0x02000000 0x04000000 +ext2load usb 0:1 0x04000000 /boot/${uinitarg} && ext2load usb 0:1 0x02000000 /boot/${uimagearg} && setenv bootargs ${my1arg} ${my2arg} 'root=/dev/sda1 rw rootwait' && bootm 0x02000000 0x04000000 +ext2load mmc 0:1 0x04000000 /boot/${uinitarg} && ext2load mmc 0:1 0x02000000 /boot/${uimagearg} && setenv bootargs ${my1arg} ${my2arg} 'root=/dev/mmcblk0p1 rw rootwait' && bootm 0x02000000 0x04000000 +ext2load ide 0:1 0x02000000 /boot/${uimagearg} && setenv bootargs ${my1arg} ${my2arg} 'root=/dev/sda1 rw rootwait' && bootm 0x02000000 +ext2load usb 0:1 0x02000000 /boot/${uimagearg} && setenv bootargs ${my1arg} ${my2arg} 'root=/dev/sda1 rw rootwait' && bootm 0x02000000 +ext2load mmc 0:1 0x02000000 /boot/${uimagearg} && setenv bootargs ${my1arg} ${my2arg} 'root=/dev/mmcblk0p1 rw rootwait' && bootm 0x02000000 |