Rocket wrote:
> No this is not a bug. Many functions that are common across a couple
> targets have been moved into the generic_stage_target.py file. the code
> you are looking for is there. Others have reported that this
> functionality is working. Perhaps you have a typo.
First I would like to say that the 2.0 code looks extremely nice! I am finding
it very easy to read through and understand what it is doing.
As for the livecd/overlay problem I am having, I think it is indeed a bug :-)
Here is line 1004 from the rc5 generic_stage_target.py file:
and os.path.exists(self.settings["spec_prefix"]+"/overlay"):
I think it should read:
and os.path.exists(self.settings[self.settings["spec_prefix"]+"/overlay"]):
Anyway, that fixed my problem :-)
Ted
|