blob: 904f3121d99625acb3dcb7f11d382a06ecd72caf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
export UFS_SUPPORT=1
export AHCI_SUPPORT=
export ATA_DMA_SUPPORT=
export ATA_PIO_SUPPORT=
export DEBUG_SUPPORT=1
cd kernel
make -f arm64-mobile.make all
cd ../boot
make -f arm64-mobile.make all
make -f arm64-mobile.make run
|