|
From: McMechan, J. <McM...@na...> - 2002-05-22 18:21:55
|
I noticed while getting Redhat7.3.p running for my local system that you
process all the RPMS individually I have always found it much easier to
process them as a group as this eliminates the circular dependency problem.
I am even worse a python ;) this was the first time I looked at a python
program.
I did my change by commenting out the entire pre-install-post loop & if
statements
I changed the /uml_install... script put into installfs to approximately
temp=""
for rpm in rpms:
temp=temp+" "+rpm
runcommand("rpm -ivh "+temp)
this worked much better as it did not fail and require reordering of the
RPMs
I still have not figured out why the automated linux kernel boot fails on my
system but I get a segfault with no mm or a kernel panic with 2.4.18-28um
|