The main branch is no longer the default branch and is no longer actively maintained. This repository has migrated to a new default branch structure.
If you have a local repository pointing to the old main branch, follow these steps to update:
git fetch origingit checkout chipsec2git branch -u origin/chipsec2git remote set-head origin --autoIf you're working with a forked repository where origin points to your fork and upstream points to the main chipsec repository, use these commands instead:
git fetch upstreamgit checkout chipsec2git branch -u upstream/chipsec2git remote set-head upstream --autogit push origin chipsec2If you require support for older Intel platforms, use the chipsec1 branch:
- Client Platforms: Pre-ADL (pre-12th Gen Core)
- Server Platforms: Pre-SPR (pre-3rd Gen Xeon Scalable)
To switch to the legacy branch:
git checkout chipsec1| Branch | Status | Use Case |
|---|---|---|
chipsec2 |
✅ Active (Default) | Current development, ADL and newer platforms |
chipsec1 |
Pre-ADL client and pre-SPR server platforms, not activly maintined (only urgent changes.) | |
main |
❌ Deprecated | No longer maintained; do not use |
For more information on platform support and updates, please refer to the main repository documentation or contact chipsec@intel.com