You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
394 B
17 lines
394 B
#!/bin/bash
|
|
|
|
export PATH=.:./tools:../tools:/usr/sbin:/usr/bin:/sbin:/bin:/
|
|
|
|
. /linux-live/config || exit 1
|
|
. /linux-live/livekitlib || exit 1
|
|
. /linux-live/buildconfig || exit 1
|
|
|
|
# build initramfs image
|
|
echo "Building intramfs image..."
|
|
cd /linux-live/initramfs
|
|
chmod 755 ./initramfs_create
|
|
INITRAMFS=$(./initramfs_create)
|
|
|
|
if [ "$INITRAMFS" != "" ]; then
|
|
mv "$INITRAMFS" /boot/initrfs.img
|
|
fi
|