summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Boffemmyer2009-01-05 13:09:19 -0500
committerJustin Boffemmyer2009-01-05 13:09:19 -0500
commit94575e1d4b76ff538b5a182004e5e659edf1b197 (patch)
treede810929c6da8360c15e6da0630cba32b1415221
parentede179775c2ba25d2e0292922c5fa362283683a3 (diff)
smgl.install/smgl-kernel: fix symlinktest-0.10.0-5-1
The symlink was pointing to a target that was prefixed with TARGET, which doesn't exist in the installed system but only from the perspective of the running ISO. This was fixed.
-rwxr-xr-xiso/usr/share/smgl.install/smgl-kernel2
1 files changed, 1 insertions, 1 deletions
diff --git a/iso/usr/share/smgl.install/smgl-kernel b/iso/usr/share/smgl.install/smgl-kernel
index e71b0b2..d163fb6 100755
--- a/iso/usr/share/smgl.install/smgl-kernel
+++ b/iso/usr/share/smgl.install/smgl-kernel
@@ -38,7 +38,7 @@ do
read -n1 input
echo ""
case $input in
- "y" ) ln -sf "$TARGET"/boot/vmlinuz-$(uname -r) "$TARGET"/boot/vmlinuz
+ "y" ) ln -sf /boot/vmlinuz-$(uname -r) "$TARGET"/boot/vmlinuz
break
;;
"n" ) break