blob: 3ebb00055a00a7994250eceddf9caf876832cd1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
Goal: Boot system with files created by unpacking .deb files
Status: success
During the test I tried to run dash shell as init to verify everything worked
Packages were manually downloaded
.deb files were unpacked using:
`mkdir $PKG; ar x $PKG.deb --output $PKG`
and then content was extracted using:
`tar xf $PKG/content.tar.gz -C initramfs`
Package list:
dash_0.5.12-12_amd64.deb
gcc-14-base_14.2.0-19_amd64.deb
libc6_2.41-12_amd64.deb
libc-bin_2.41-12_amd64.deb
libgcc-s1_14.2.0-19_amd64.deb
|