ubuntu-core-initramfs:xnox/rebuild-for-snapd-release

Last commit made on 2021-11-16
Get this branch:
git clone -b xnox/rebuild-for-snapd-release https://git.launchpad.net/ubuntu-core-initramfs

Branch merges

Branch information

Name:
xnox/rebuild-for-snapd-release
Repository:
lp:ubuntu-core-initramfs

Recent commits

828eb84... by Dimitri John Ledkov

releasing package ubuntu-core-initramfs version 51

ff72a2f... by Dimitri John Ledkov <email address hidden>

Merge pull request #51 from snapcore/alfonsosanchezbeato/some-more-doc

Some more documentation

8cd54a1... by Dimitri John Ledkov <email address hidden>

Merge pull request #54 from snapcore/xnox/upgrade-snapd-snapshot

Xnox/upgrade snapd snapshot

cb4f138... by Dimitri John Ledkov

releasing package ubuntu-core-initramfs version 50

7b65b27... by Dimitri John Ledkov

Upgrade to a new snapshot for cloudimg-rootfs feature.

f9e0eb2... by Alfonso Sanchez-Beato

Merge pull request #49 from snapcore/alfonsosanchezbeato/fix-dep-pulling

debian: make sure we get deps from compiled systemd

d1e8849... by Alfonso Sanchez-Beato

doc: point to arch doc from readme

7634dbd... by Alfonso Sanchez-Beato

doc: add architecture doc

8b0aec8... by Alfonso Sanchez-Beato

Merge pull request #50 from snapcore/alfonsosanchezbeato/fix-create-initrd

ubuntu-core-initramfs: run cpio with subprocess.run()

ce848c7... by Alfonso Sanchez-Beato

ubuntu-core-initramfs: run cpio with subprocess.run()

It has been found that in the x86 case (that prepends an early
initramfs with microcode files), the created initramfs was in some
cases not correct, and the kernel was unable to load it. Looking at
python dcoumentation about subprocess.check_call() [1], it says

"Code needing to capture stdout or stderr should use run() instead"

And it turns out that capturing output from run() fixes the problem,
although it is unclear what is the problem.