You've already forked beagleconnect-freedom
mirror of
https://github.com/beagleboard/beagleconnect-freedom.git
synced 2026-08-02 04:35:36 +00:00
7 lines
275 B
Bash
Executable File
7 lines
275 B
Bash
Executable File
#!/bin/sh
|
|
BUILDROOT_DIR=${1:-$HOME/workspace/buildroot}
|
|
mkdir -p qemu
|
|
make -C $BUILDROOT_DIR O=$PWD/qemu BR2_EXTERNAL=$PWD beagleconnect_gateway_qemu_x86_64_defconfig
|
|
mkdir -p pb
|
|
make -C $BUILDROOT_DIR O=$PWD/pb BR2_EXTERNAL=$PWD beagleconnect_gateway_pocketbeagle_defconfig
|