We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc93010 commit 45d4547Copy full SHA for 45d4547
1 file changed
virtme/mkinitramfs.py
@@ -23,6 +23,10 @@ def make_base_layout(cw):
23
cw.symlink(b'bin', b'sbin')
24
cw.symlink(b'lib', b'lib64')
25
26
+ # Hack to support systems that expect some form of /usr at boot
27
+ # (e.g. with a dynamically-linked busybox with libs in /usr/lib)
28
+ cw.symlink(b'/', b'usr')
29
+
30
def make_dev_nodes(cw):
31
cw.mkchardev(b'dev/null', (1, 3), mode=0o666)
32
cw.mkchardev(b'dev/kmsg', (1, 11), mode=0o666)
0 commit comments