WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

RE: [Xen-devel] [RFC][PATCH] create an initrd for dom0 in install.shscri

To: "Harry Butterworth" <harry@xxxxxxxxxxxxxxxxxxxxxxxxxxxxx>, <xen-devel@xxxxxxxxxxxxxxxxxxx>
Subject: RE: [Xen-devel] [RFC][PATCH] create an initrd for dom0 in install.shscript
From: "Ian Pratt" <m+Ian.Pratt@xxxxxxxxxxxx>
Date: Thu, 30 Mar 2006 16:48:17 +0100
Delivery-date: Thu, 30 Mar 2006 15:49:56 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
Thread-index: AcZUC93SzD9WJD0YTzyDiL5sBIUG8gABNNvQ
Thread-topic: [Xen-devel] [RFC][PATCH] create an initrd for dom0 in install.shscript
> I'm guessing that the initrd created for dom0 in general 
> won't work for
> domU domains.  I'm not sure what to do about that.

If this is a -xen kernel, we should create a an initrd that can be used
by both dom0 and domU, i.e. it has the necessary hardware drivers, but
also the front end drivers.
 
Aren't there various differences between different distro's mkinitrd
routines? What distros will this script work on? [I recall that on
various FC versions (FC3?) its necessary to have an upgraded nash to be
able to build working initrd's at all]

It would be great to get a version of this script that's tested on a
bunch of different distros.

Thanks,
Ian


> Also my script-fu is weak so even what little is here could 
> probably be
> better.
> 
> Harry.
> 
> # HG changeset patch
> # User harry@xxxxxxxxxxxxxxxxxxxxx
> # Node ID 7d648c1099b21f36de09acf5481122ceaeb1fde4
> # Parent  9239f190736d85933bbe64eca0613c24c07617df
> Create an initrd for dom0 in the install script.
> 
> diff -r 9239f190736d -r 7d648c1099b2 install.sh
> --- a/install.sh      Wed Mar 29 23:11:53 2006
> +++ b/install.sh      Thu Mar 30 14:57:57 2006
> @@ -44,6 +44,18 @@
>  (cd $tmp; tar -cf - *) | tar --no-same-owner -C "$dst" -xf -
>  rm -rf "$tmp"
>  
> +if [ -x "$(which mkinitrd)" ] && [ -x "$(which depmod)" ] && 
> [ $dst ==
> '/' ]; then
> +  cd $src/lib/modules
> +  for i in *; do
> +    echo " - creating initrd-$i.img for dom0"
> +    depmod $i
> +    mkinitrd -o $dst/boot/initrd-$i.img $i
> +  done
> +  cd -
> +else
> +  echo " - you may need to create an initrd for dom0"
> +fi
> +
>  echo "All done."
>  
>  echo "Checking to see whether prerequisite tools are installed..."
> diff -r 9239f190736d -r 7d648c1099b2
> linux-2.6-xen-sparse/arch/i386/boot-xen/Makefile
> --- a/linux-2.6-xen-sparse/arch/i386/boot-xen/Makefile        
> Wed Mar 29
> 23:11:53 2006
> +++ b/linux-2.6-xen-sparse/arch/i386/boot-xen/Makefile        
> Thu Mar 30
> 14:57:57 2006
> @@ -19,3 +19,4 @@
>       install -m0664 .config
> $(INSTALL_ROOT)/boot/config-$(XINSTALL_NAME)$(INSTALL_SUFFIX)
>       install -m0664 System.map
> $(INSTALL_ROOT)/boot/System.map-$(XINSTALL_NAME)$(INSTALL_SUFFIX)
>       ln -f -s vmlinuz-$(XINSTALL_NAME)$(INSTALL_SUFFIX)
> $(INSTALL_ROOT)/boot/vmlinuz-$(VERSION).$(PATCHLEVEL)$(XENGUES
> T)$(INSTALL_SUFFIX)
> +     ln -f -s initrd-$(XINSTALL_NAME)$(INSTALL_SUFFIX).img
> $(INSTALL_ROOT)/boot/initrd-$(VERSION).$(PATCHLEVEL)$(XENGUEST
> )$(INSTALL_SUFFIX).img
> 
> 

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>