mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-30 07:25:44 +00:00
10 lines
174 B
Bash
Executable File
10 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
|
|
/bin/mount -t tmpfs tmpfs /mnt
|
|
|
|
/bin/cp -a / /mnt 2>/dev/null
|
|
|
|
/bin/mount -t proc -o noexec,nosuid,nodev proc /proc
|
|
|
|
exec /bin/busybox switch_root /mnt /sbin/init
|