mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
20 lines
236 B
Bash
Executable File
20 lines
236 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
$SCRIPTS/unpack module-init-tools
|
|
|
|
setup_toolchain host
|
|
|
|
cd $BUILD/module-init-tools*
|
|
|
|
mkdir -p .build-host
|
|
cd .build-host
|
|
|
|
../configure
|
|
|
|
make depmod
|
|
|
|
cp depmod $ROOT/$TOOLCHAIN/bin
|