From 40d7ad89e04f78fbe8225196492904e66e275bad Mon Sep 17 00:00:00 2001
From: Tobias Hintze
Date: Thu, 23 Mar 2006 00:13:04 +0000
Subject: [PATCH] Tobias Hintze | : fixed two small issues
with rescue target: * lzo is not in base repo any longer * tar -I is
deprecated
[2006021920263505636] (https://www.rocklinux.net/submaster)
git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@7318 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
---
target/rescue/build_stage2.sh | 2 +-
target/rescue/config.in | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/target/rescue/build_stage2.sh b/target/rescue/build_stage2.sh
index 05260d4fb..30a477345 100644
--- a/target/rescue/build_stage2.sh
+++ b/target/rescue/build_stage2.sh
@@ -160,5 +160,5 @@ fi
EOF
chmod 755 etc/init.d/rcS etc/boot.d/[0-9][0-9]-*
echo_status "Creating system.tar.bz2 archive."
-tar -cIf ../system.tar.bz2 * ; cd ..
+tar --use-compress-program=bzip2 -cf ../system.tar.bz2 * ; cd ..
diff --git a/target/rescue/config.in b/target/rescue/config.in
index 28acc0dad..684ea5fad 100644
--- a/target/rescue/config.in
+++ b/target/rescue/config.in
@@ -66,6 +66,7 @@ pkgfilter sed '
/ openssl / { p; d; }; / openssh / { p; d; };
/ ntfsprogs / { p; d; };
/ gmp / { p; d; };
+/ lzo / { p; d; };
# Select some packages explicitely (architectures)
/ bin86 / { p; d; };
|