8 lines
187 B
Bash
8 lines
187 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Busybox is built without network support
|
||
|
sed -i '/hostname/d' ${TARGET_DIR}/etc/inittab
|
||
|
|
||
|
# Kernel is built without devpts support
|
||
|
sed -i '/^devpts/d' ${TARGET_DIR}/etc/fstab
|