mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-06 15:43:02 +02:00
A long standing internal debate comes to its logical conclusion. Arch naming should follow GCC. The "native /etc" has also found a better name: classic! README and GitHub action has been updated accordingly. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
9 lines
213 B
Bash
Executable File
9 lines
213 B
Bash
Executable File
#!/bin/sh
|
|
. "$BR2_CONFIG"
|
|
|
|
# Prevent regen of host key at every boot, /etc is saved across reboots
|
|
if [ -L "$TARGET_DIR/etc/dropbear" ]; then
|
|
rm "$TARGET_DIR/etc/dropbear"
|
|
mkdir "$TARGET_DIR/etc/dropbear"
|
|
fi
|