mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
--------- Co-authored-by: tiopex <tiopxyz@gmail.com> Co-authored-by: tiopex <67048640+tiopex@users.noreply.github.com>
9 lines
215 B
Bash
Executable File
9 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Kernel is built without devpts support
|
|
sed -i '/^devpts/d' ${TARGET_DIR}/etc/fstab
|
|
|
|
# Kernel is built without network support
|
|
rm -f ${TARGET_DIR}/etc/init.d/S40network
|
|
rm -rf ${TARGET_DIR}/etc/network/
|