2007-05-10 08:35:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2013-03-13 18:11:13 +00:00
|
|
|
export INITRAMFS=1
|
2020-11-27 00:00:31 +00:00
|
|
|
|
|
|
|
# switch to tmpfs to allow run daemons in jail on initramfs boot
|
|
|
|
DIRS=$(echo *)
|
|
|
|
NEW_ROOT=/new_root
|
|
|
|
|
|
|
|
mkdir -p $NEW_ROOT
|
|
|
|
mount -t tmpfs tmpfs $NEW_ROOT
|
|
|
|
|
|
|
|
cp -pr $DIRS $NEW_ROOT
|
|
|
|
|
|
|
|
exec switch_root $NEW_ROOT /sbin/init
|