On Mon, Nov 06, 2006 at 11:37:56AM +0100, Peter Huber enlightened us:
> I need to integrate a windows xp tablet edition into unattended install. I 
> found the following in the mailling ist archive.
> I think this way a not very suitable solution to integrate this os. Has 
> anyone any other solution ?
>

I did it by modifying install.pl with the following patch. It checks for a
cmpnents directory (indicitive of Tablet OS) and adjusts the winnt command
accordingly. I think it should work for both dos and linux boot, but I've
not tested it on a dos boot disk.

Matt

-- 
Matt Hyclak
Department of Mathematics 
Department of Social Work
Ohio University
(740) 593-1263
Index: install.pl
===================================================================
RCS file: /cvsroot/unattended/unattended/install/dosbin/install.pl,v
retrieving revision 1.142
diff -r1.142 install.pl
955a956,959
>         my $dos_zdrv = $u->{'_meta'}->{'dos_zdrv'};
>       my $cmpnents = "";
>       my $winnt_path = "";
>       my $winnt_opts = "";
963,965c967,983
<         $src_tree .= 'i386';
<         my $dos_zdrv = $u->{'_meta'}->{'dos_zdrv'};
<         return "$dos_zdrv;cd $src_tree;winnt $lang_opts /s:$src_tree 
/u:$unattend_txt";
---
>       if ($is_linux) {
>           (my $linux_tree = $src_tree) =~ s#\\#/#g;
>           $linux_tree =~ s#$dos_zdrv#/z#g;
> 
>           $cmpnents = $linux_tree . "cmpnents";
>       } else {
>           $cmpnents = $src_tree . "cmpnents";
>       }
>       print "$cmpnents\n";
>       if ( -e $cmpnents ) {
>           $winnt_path = "i386\\winnt";
>           $winnt_opts = "/2";   
>       } else {
>           $src_tree .= 'i386';
>           $winnt_path = "winnt";
>       }
>         return "$dos_zdrv;cd $src_tree;$winnt_path $winnt_opts $lang_opts 
> /s:$src_tree /u:$unattend_txt";
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
unattended-info mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/unattended-info

Reply via email to