mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
13 lines
280 B
Bash
Executable File
13 lines
280 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
$SCRIPTS/unpack linux
|
|
|
|
PKG_DIR=`find $PACKAGES -type d -name $1`
|
|
|
|
mkdir -p $INSTALL/initramfs
|
|
cp -PR $BUILD/busybox*/_install-initramfs/* $INSTALL/initramfs
|
|
chmod 4755 $INSTALL/initramfs/bin/busybox
|
|
|
|
cp $PKG_DIR/scripts/init $INSTALL/initramfs
|