mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
19 lines
333 B
Bash
Executable File
19 lines
333 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options $1
|
|
|
|
$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 \
|
|
INCLUDEDIR="-I. -I$ROOT/$TOOLCHAIN/include -I$LZMA_DIR/C"
|
|
|
|
mkdir -p $ROOT/$TOOLCHAIN/bin
|
|
cp mksquashfs $ROOT/$TOOLCHAIN/bin
|