|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH] (revised slightly) create kernel symlinks in /bo
On Fri, Jan 21, 2005 at 05:51:43PM -0000, Ian Pratt wrote:
> Since the symlink is to a file in the same directory, I think the
> orginal patch will work fine with GRUB.
No, the symlink is still an absolute path. It needes to be relative:
+ ln -s /boot/vmlinuz-$(FULLVERSION) \
+ $(INSTALL_DIR)/boot/vmlinuz-$(EXTRAVERSION)
becomes
+ ln -s vmlinuz-$(FULLVERSION) \
+ $(INSTALL_DIR)/boot/vmlinuz-$(EXTRAVERSION)
(A hardlink would certainly not work, because /boot may be on a
different filesystem than $(INSTALL_DIR)/boot.)
Regards,
Luciano Rocha
-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/xen-devel
|
|
|
|
|