Merge branch 'master' of git.wit.com:jcarr/pinebook
This commit is contained in:
commit
19f833d541
|
@ -0,0 +1 @@
|
||||||
|
boot-script/*.scr
|
|
@ -1,6 +1,7 @@
|
||||||
# Recompile with:
|
# Recompile with:
|
||||||
all:
|
all:
|
||||||
mkimage -C none -A arm -T script -d simple.cmd simple.scr
|
mkimage -C none -A arm -T script -d simple.cmd simple.scr
|
||||||
|
mkimage -C none -A arm -T script -d simplesdcard.cmd simplesdcard.scr
|
||||||
mkimage -C none -A arm -T script -d debug.cmd debug.scr
|
mkimage -C none -A arm -T script -d debug.cmd debug.scr
|
||||||
|
|
||||||
mkimage -C none -A arm -T script -d sid.cmd sid.scr
|
mkimage -C none -A arm -T script -d sid.cmd sid.scr
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,3 +1,4 @@
|
||||||
#!/bin/bash -x
|
#!/bin/bash -x
|
||||||
|
|
||||||
dd if=u-boot-sunxi-with-spl.bin of=/dev/mmcblk0 bs=1K seek=8
|
dd if=/boot/u-boot-sunxi-with-spl.bin of=/dev/mmcblk0 bs=1K seek=8
|
||||||
|
sync
|
||||||
|
|
|
@ -49,7 +49,7 @@ toms-recent-commits:
|
||||||
git log --pretty=format:"%ad:%an:%d:%B" --date=short --reverse --all --since=2.months.ago --author=trini
|
git log --pretty=format:"%ad:%an:%d:%B" --date=short --reverse --all --since=2.months.ago --author=trini
|
||||||
|
|
||||||
# builds and runs on Jan 1 2019
|
# builds and runs on Jan 1 2019
|
||||||
build-pinebook
|
build-pinebook:
|
||||||
export CROSS_COMPILE=/home/pinebook/cross-compilers/gcc-linaro/bin/aarch64-linux-gnu-
|
export CROSS_COMPILE=/home/pinebook/cross-compilers/gcc-linaro/bin/aarch64-linux-gnu-
|
||||||
git checkout anarsoul/pinebook-wip-20181109
|
git checkout anarsoul/pinebook-wip-20181109
|
||||||
make pinebook_defconfig
|
make pinebook_defconfig
|
||||||
|
@ -191,3 +191,11 @@ brom64:
|
||||||
mmc part
|
mmc part
|
||||||
fatwrite mmc 0 0 brom_a64.bin 0x10000
|
fatwrite mmc 0 0 brom_a64.bin 0x10000
|
||||||
aarch64-linux-gnu-objdump -D -b binary -marm brom_a64.bin
|
aarch64-linux-gnu-objdump -D -b binary -marm brom_a64.bin
|
||||||
|
|
||||||
|
install-internal-emmc:
|
||||||
|
parted /dev/mmcblk2 mklabel msdos
|
||||||
|
parted /dev/mmcblk2 mkpart primary ext4 1MiB 15.5GB
|
||||||
|
mkfs.ext4 /dev/mmcblk2p1
|
||||||
|
mount /dev/mmcblk2p1 /mnt/test/
|
||||||
|
cd /mnt/test ; tar xfj /root/mmcblk2p1.tar.bz2
|
||||||
|
dd if=/boot/u-boot-sunxi-with-spl.bin of=/dev/mmcblk2 bs=1K seek=8
|
||||||
|
|
Loading…
Reference in New Issue