blob: 7699ec056269fa15f65ad34d87fe2f4fc935f7a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
export ATA_PIO_SUPPORT=1
unset ATA_DMA_SUPPORT
export DEBUG_SUPPORT=1
cd kernel
make -f amd64-desktop.make all
cd ../boot
make -f amd64-desktop.make all
make -f amd64-desktop.make run-efi-amd64-ata-pio
|