Skip to content

A patch for mkarchiso to build secure-boot shim enabled iso

Notifications You must be signed in to change notification settings

solsticedhiver/archiso-sb-shim

Repository files navigation

archiso-sb-shim

This repo attempts to provide an easy way to create an Archlinux Live CD/USB ISO ready to run on a Secure Boot enabled system, using the shim method with your own keys.

But for this to work, you will need to already have installed your own keys in the MOK list with mokutil.

Or, if you put your DER certificate in the current directory (named DB.cer), then it will be included in the ESP of the archiso, and you will be able to enroll it during the boot of the ISO.

NOTE: This will not install an archlinux ready to boot with Secure Boot though. You will have to complete the needed steps to make it work, by yourself. This would mean doing almost the same thing that here aka. install sbsigntools, shim-signed, and mokutil, and your keys into the shim MOK list.

Scripted method

The script archiso-sb-shim.sh automates the method described below. This is a very basic script; use at your own risk.

It needs sbsigntools package to be installed.

Manual method

Prerequisite

Install the sbsigntools from [extra].

As described in the arch wiki, you need to install shim-signed package from the AUR.

Keep the generated packages around, as we will need them later on.

Copy your keys (DB.key and DB.crt) to the current directory. Look at the wiki on how to do that if you don't have ones.

Patch mkarchiso

Install archiso package, if it is not already done.

Make a copy of mkarchiso, and apply the patch:

cp /usr/bin/mkarchiso .
patch -p0 -i mkarchiso.patch

Copy and configure a profile

Copy an archiso profile; we will use here releng.

cp -a /usr/share/archiso/configs/releng myarchiso

We need to add the package previously mentionned (aka shim-signed) to the iso. To do so:

  1. Add the following line at the end of packages.x86_64:

    mokutil
    shim-signed
    
  2. Modify pacman.conf inside the archiso profile you just copied

Define a custom repo at the end of the file. You just need to uncomment the last 3 lines, and choose a directory where you will put that repo alongside the 2 packages mentionned earlier.

[custom]
SigLevel = Optional TrustAll
Server = file:///tmp/custom.d

Create a custom repo

To make the previous bit work, we need to create a custom repo for the package from AUR we need: shim-signed.

mkdir /tmp/custom.d
cd /tmp/custom.d
cp <somewhere>/shim-signed-*.pkg.* .
repo-add custom.db.tar.gz shim-signed-*.pkg.*

Voilà !

That's it. We just have to build the ISO by running our mkarchiso now:

./mkarchiso -v -w /tmp/archisotmp -o ~ ./myarchiso

About

A patch for mkarchiso to build secure-boot shim enabled iso

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages