Merge branch 'bugfix/rename_ldgen_common_module_v3.3' into 'release/v3.3'

ldgen: rename common module(v3.3)

See merge request idf/esp-idf!4764
This commit is contained in:
Jiang Jiang Jian
2019-04-14 14:21:01 +08:00
4 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ from pyparsing import Literal
from pyparsing import ZeroOrMore from pyparsing import ZeroOrMore
from pyparsing import Optional from pyparsing import Optional
from pyparsing import originalTextFor from pyparsing import originalTextFor
from common import LdGenFailure from ldgen_common import LdGenFailure
class FragmentFileModel(): class FragmentFileModel():

View File

@ -22,7 +22,7 @@ import fnmatch
from fragments import Sections, Scheme, Mapping, Fragment from fragments import Sections, Scheme, Mapping, Fragment
from pyparsing import Suppress, White, ParseException, Literal, Group, ZeroOrMore from pyparsing import Suppress, White, ParseException, Literal, Group, ZeroOrMore
from pyparsing import Word, OneOrMore, nums, alphanums, alphas, Optional, LineEnd, printables from pyparsing import Word, OneOrMore, nums, alphanums, alphas, Optional, LineEnd, printables
from common import LdGenFailure from ldgen_common import LdGenFailure
class PlacementRule(): class PlacementRule():

View File

@ -22,7 +22,7 @@ import tempfile
from fragments import FragmentFileModel from fragments import FragmentFileModel
from sdkconfig import SDKConfig from sdkconfig import SDKConfig
from generation import GenerationModel, TemplateModel, SectionsInfo from generation import GenerationModel, TemplateModel, SectionsInfo
from common import LdGenFailure from ldgen_common import LdGenFailure
def main(): def main():