From 03e97aed7b4f25ec93e9b01ee60ea707ecfcb4f5 Mon Sep 17 00:00:00 2001 From: TomasM Date: Wed, 18 Oct 2017 08:51:41 -0400 Subject: [PATCH] make core module 01-core --- build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build b/build index fd857fa..b86a820 100755 --- a/build +++ b/build @@ -54,14 +54,14 @@ cat bootfiles/syslinux.cfg | sed -r "s:/boot/:/$LIVEKITNAME/boot/:" > $BOOT/sysl cat bootfiles/bootinst.bat | sed -r "s:/boot/:/$LIVEKITNAME/boot/:" | sed -r "s:\\\\boot\\\\:\\\\$LIVEKITNAME\\\\boot\\\\:" > $BOOT/bootinst.bat cp $VMLINUZ $BOOT/ -# create compressed core.sb +# create compressed 01-core.sb COREFS="" for i in $MKMOD; do if [ -d /$i ]; then COREFS="$COREFS /$i" fi done -mksquashfs $COREFS $LIVEKITDATA/$LIVEKITNAME/core.$BEXT -comp xz -b 512k -keep-as-directory || exit +mksquashfs $COREFS $LIVEKITDATA/$LIVEKITNAME/01-core.$BEXT -comp xz -b 512k -keep-as-directory || exit cd "$LIVEKITDATA" ARCH=$(uname -m)