Create fs-overlay, post-build
Setup buildroot filesystem overlay and move our custom scripts/configs into it. Setup a post-build script and have it delete files generated by buildroot that aren't in RescueOS v1.1. This gets us closer to a buildroot configuration that will automatically generate RescueOS images. For now, we're using RescueOS v1.1 as a reference.
このコミットが含まれているのは:
84
fs-overlay/etc/init.d/rcS
実行可能ファイル
84
fs-overlay/etc/init.d/rcS
実行可能ファイル
@ -0,0 +1,84 @@
|
||||
#!/bin/sh
|
||||
EMULATOR=0
|
||||
VERSION="1.1"
|
||||
mount -t sysfs none /sys
|
||||
mount -n -t proc none /proc
|
||||
echo 200 > /sys/class/backlight/acx565akm/brightness
|
||||
mount -t tmpfs -o size=64k,mode=0755 tmpfs /dev
|
||||
mkdir /dev/pts
|
||||
mount -t devpts devpts /dev/pts
|
||||
mount -t tmpfs -o rw,noexec,nosuid,mode=0755 tmpfs /run
|
||||
mount -t tmpfs -o rw,mode=0755 tmpfs /root/
|
||||
mount -t tmpfs -o rw,nosuid,nodev tmpfs /tmp/
|
||||
echo /sbin/mdev.sh > /proc/sys/kernel/hotplug
|
||||
mdev -s
|
||||
find /sys/devices/* -name modalias | while read module ; do
|
||||
modprobe `cat $module` 2> /dev/null
|
||||
done
|
||||
hwclock -s
|
||||
hostname -F /etc/hostname
|
||||
|
||||
|
||||
modprobe leds-lp5523
|
||||
|
||||
|
||||
/sbin/battery-watchdog &
|
||||
#/rescueOS/charge21.bash > /run/batterylog &
|
||||
clear
|
||||
echo "Disclaimer: This system comes without any warranty. Use it at your own risk."
|
||||
sleep 3
|
||||
clear
|
||||
echo "Welcome to N900 Rescue Initrd $VERSION"
|
||||
echo
|
||||
|
||||
/sbin/loadkmap < /rescueOS/nokia-n900.kmap
|
||||
|
||||
for i in 2 3 7 8 ; do
|
||||
echo 25 > /sys/class/leds/lp5523\:channel$i/brightness
|
||||
done
|
||||
|
||||
autostart_script=`grep -q autostart /proc/cmdline && cat /proc/cmdline | sed -e 's/.*autostart=\(.*\)/\1/'`
|
||||
if [ -n "$autostart_script" ] ; then
|
||||
echo "Running $autostart_script"
|
||||
$autostart_script
|
||||
fi
|
||||
|
||||
touch /run/resolv.conf
|
||||
|
||||
echo "The root password is: rootme"
|
||||
|
||||
#Being helpful for beginners, and annoying for "power users"
|
||||
echo "Start an FTP server with anonymous up and downloads everywhere? y/n"
|
||||
read result;
|
||||
if [ "$result" = "y" ] ; then
|
||||
tcpsvd -v 0.0.0.0 21 ftpd -w &
|
||||
fi
|
||||
|
||||
echo "Start telnetd? y/n"
|
||||
read result;
|
||||
|
||||
if [ "$result" = "y" ] ; then
|
||||
telnetd
|
||||
fi
|
||||
|
||||
echo "Start usb-networking? y/n"
|
||||
read result;
|
||||
|
||||
if [ "$result" = "y" ] ; then
|
||||
/rescueOS/usbnetworking-enable.sh
|
||||
fi
|
||||
|
||||
#node mess
|
||||
if [ -e /sys/block/mmcblk0 ] && [ -e /sys/block/mmcblk1 ] ; then
|
||||
echo -n "1" > /run/internal_nodenr
|
||||
else
|
||||
echo -n "0" > /run/internal_nodenr
|
||||
fi
|
||||
|
||||
|
||||
|
||||
if [ "$EMULATOR" = "1" ] ; then
|
||||
udhcpc eth0
|
||||
fi
|
||||
#We are done.
|
||||
|
4
fs-overlay/etc/inittab
ノーマルファイル
4
fs-overlay/etc/inittab
ノーマルファイル
@ -0,0 +1,4 @@
|
||||
::sysinit:/etc/init.d/rcS
|
||||
tty1::respawn:-/bin/bash
|
||||
ttyS0::respawn:-/bin/bash
|
||||
::shutdown:/bin/sh /rescueOS/shutdown-cleanup
|
1
fs-overlay/etc/passwd
ノーマルファイル
1
fs-overlay/etc/passwd
ノーマルファイル
@ -0,0 +1 @@
|
||||
root:$1$sz.20p5a$c40FElyGq0cIfHXeQQChQ/:0:0:root:/root:/bin/bash
|
1
fs-overlay/etc/profile
ノーマルファイル
1
fs-overlay/etc/profile
ノーマルファイル
@ -0,0 +1 @@
|
||||
PS1="\w\$ "
|
1
fs-overlay/etc/resolv.conf
シンボリックリンク
1
fs-overlay/etc/resolv.conf
シンボリックリンク
@ -0,0 +1 @@
|
||||
/run/resolv.conf
|
新しいイシューから参照
ユーザーをブロックする