From 1e215402a2438d32378af9225261d486a748c2f0 Mon Sep 17 00:00:00 2001 From: Tomas M Date: Thu, 18 May 2017 01:47:21 -0500 Subject: [PATCH] more readmes --- .config | 2 +- README | 4 ++++ build | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.config b/.config index 4be9259..f437b30 100644 --- a/.config +++ b/.config @@ -15,7 +15,7 @@ LIVEKITNAME="mylinux" # Kernel file, will be copied to your Live Kit # Your kernel must support aufs and squashfs. Debian Jessie's kernel is ready # out of the box. -VMLINUZ=/boot/vmlinuz +VMLINUZ=/vmlinuz # Kernel version. Change it to "3.2.28" for example, if you are building # Live Kit with a different kernel than the one you are actually running diff --git a/README b/README index ece3a9c..c4239e4 100644 --- a/README +++ b/README @@ -16,6 +16,10 @@ since it creates some (sym)links and such. and reorganize isolinux.cfg to fit your needs (when editing the file, keep all paths in /boot/, it will be rellocated during LiveKit creation) +* Linux Live Kit comes with precompiled static binaries in ./initramfs + directory. Those may be outdated but will work. You may replace them + by your own statically linked binaries, if you know how to compile them. + * If you plan to boot your Live Kit from CD, you need to recompile syslinux.bin else it won't be able to boot your Live Kit from directory LIVEKITNAME. There is a script prepared for you which will handle all diff --git a/build b/build index 9105965..6cc50f8 100755 --- a/build +++ b/build @@ -17,6 +17,7 @@ allow_only_root # check for mksquashfs with xz compression if [ "$(mksquashfs 2>&1 | grep "Xdict-size")" = "" ]; then echo "mksquashfs not found or doesn't support -comp xz, aborting, no changes made" + echo "you may consider installing squashfs-tools package" exit 1 fi