# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Id: $
+ 22 Aug 2007; Andrew Gaffney <agaffney@gentoo.org>
+ modules/generic_stage_target.py, modules/stage1_target.py,
+ modules/stage2_target.py:
+ 'chost' option is only valid in stage 1/2 specs. have catalyst error otherwise
+
13 Aug 2007; Andrew Gaffney <agaffney@gentoo.org> catalyst,
modules/generic_stage_target.py, modules/netboot2_target.py:
Fix typo in getopt call for --clear-autoresume. thanks to
self.valid_values.extend(["version_stamp","target","subarch",\
"rel_type","profile","snapshot","source_subpath","portage_confdir",\
- "cflags","cxxflags","ldflags","cbuild","chost","hostuse","portage_overlay",\
+ "cflags","cxxflags","ldflags","cbuild","hostuse","portage_overlay",\
"distcc_hosts","makeopts","pkgcache_path","kerncache_path"])
self.set_valid_build_kernel_vars(addlargs)
class stage1_target(generic_stage_target):
def __init__(self,spec,addlargs):
self.required_values=[]
- self.valid_values=[]
+ self.valid_values=["chost"]
generic_stage_target.__init__(self,spec,addlargs)
def set_stage_path(self):
class stage2_target(generic_stage_target):
def __init__(self,spec,addlargs):
self.required_values=[]
- self.valid_values=[]
+ self.valid_values=["chost"]
generic_stage_target.__init__(self,spec,addlargs)
def set_source_path(self):