Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • L linux-coresight-backports
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
    • Locked files
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
    • Requirements
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Artifacts
    • Schedules
    • Test cases
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Container Registry
    • Terraform modules
    • Model experiments
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • CI/CD
    • Code review
    • Insights
    • Issue
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • linux-arm
  • linux-coresight-backports
  • Repository
  • linux-coresight-backports
  • arch
  • x86
  • Kconfig
Find file Blame History Permalink
  • Masahiro Yamada's avatar
    x86: fix dependency of X86_32_LAZY_GS · 8458f8c2
    Masahiro Yamada authored Jun 14, 2018
    Commit 2a61f474 ("stack-protector: test compiler capability in
    Kconfig and drop AUTO mode") replaced the 'choice' with two boolean
    symbols, so CC_STACKPROTECTOR_NONE no longer exists.
    
    Prior to commit 2bc2f688 ("Makefile: move stack-protector
    availability out of Kconfig"), this line was like this:
    
      depends on X86_32 && !CC_STACKPROTECTOR
    
    The CC_ prefix was dropped by commit 050e9baa
    
     ("Kbuild: rename
    CC_STACKPROTECTOR[_STRONG] config variables"), so the dependency now
    should be:
    
      depends on X86_32 && !STACKPROTECTOR
    
    Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
    Acked-by: default avatarKees Cook <keescook@chromium.org>
    Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
    8458f8c2