mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
18 lines
283 B
Bash
Executable File
18 lines
283 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
$SCRIPTS/unpack lzma
|
|
|
|
LZMA_DIR=`ls -d $ROOT/$BUILD/lzma*`
|
|
|
|
setup_toolchain host
|
|
|
|
cd $BUILD/$1*/squashfs-tools
|
|
|
|
make mksquashfs LZMA_SUPPORT=1 LZMA_DIR=$LZMA_DIR
|
|
|
|
mkdir -p $ROOT/$TOOLCHAIN/bin
|
|
cp mksquashfs $ROOT/$TOOLCHAIN/bin
|