dotfiles/bin/mkbusyroot

20 lines
311 B
Plaintext
Raw Normal View History

#!/bin/sh
TARGET="$1"
mkdir -p $TARGET
pacstrap $TARGET busybox
cd $TARGET
ln -s bin usr/bin
2021-04-30 13:53:33 +00:00
mkdir -p home
tee etc/passwd <<<'root:x:0:0::/root:/bin/sh'
tee etc/group <<<'root:x:0:root'
tee etc/profile <<<'export PS1="[\u@\h \W]\$ "'
cd usr/bin
busybox --list | grep -v busybox | xargs -n1 ln -s busybox