mirror of
https://github.com/open-sdr/openwifi.git
synced 2025-01-03 12:34:32 +00:00
18 lines
314 B
Bash
18 lines
314 B
Bash
|
#!/bin/bash
|
||
|
set -x
|
||
|
|
||
|
WORKDIR=$PWD
|
||
|
KDIR=$1
|
||
|
SUBMODULE=xilinx_dma
|
||
|
|
||
|
source $2
|
||
|
export ARCH=arm
|
||
|
export CROSS_COMPILE=arm-linux-gnueabihf-
|
||
|
|
||
|
cp xilinx_dma.c $KDIR/drivers/dma/xilinx -rf
|
||
|
cd $KDIR
|
||
|
make $KDIR/drivers/dma/xilinx/$SUBMODULE.ko
|
||
|
cp $KDIR/drivers/dma/xilinx/$SUBMODULE.ko $WORKDIR -rf
|
||
|
cd $WORKDIR
|
||
|
ls $SUBMODULE.ko
|