alpha
Login
or
Join now
tombl.dev
/
distro
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
add initramfs
author
Thomas Stokes
date
1 year ago
(Jan 18, 2025, 5:47 PM +0800)
commit
bbf2d35f
bbf2d35f215ca596b27335d4fafb381216c9ebf5
parent
0b3ded07
0b3ded07417ed79132e29b50f39296383a7238ee
+12
1 changed file
Expand all
Collapse all
Unified
Split
packages
initramfs
package.nix
+12
packages/initramfs/package.nix
Reviewed
···
1
1
+
{
2
2
+
run,
3
3
+
basic-init,
4
4
+
}:
5
5
+
6
6
+
run { name = "initramfs.cpio"; } ''
7
7
+
mkdir root
8
8
+
cp ${basic-init}/bin/init root/init
9
9
+
10
10
+
cd root
11
11
+
find . | cpio -H newc -o > $out
12
12
+
''