• The kernel is now "3.16.1".
• Some additional minor improvements. Most notable change - the 'init' script is generated by using cat + here. Note - all changes, including the latest few merges are *not* tested yet. TODO 1 - test all changes since the last release and prepare new release if there are no issues. TODO 2 - create new tutorial document based on the latest scripts (optional, if there is free time).
This commit is contained in:
parent
46f4d20ae6
commit
abaa655d4a
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# http://kernel.org
|
# http://kernel.org
|
||||||
#
|
#
|
||||||
KERNEL_SOURCE_URL=https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.16.tar.xz
|
KERNEL_SOURCE_URL=https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.16.1.tar.xz
|
||||||
|
|
||||||
# You can find the latest BusyBox source bundles here:
|
# You can find the latest BusyBox source bundles here:
|
||||||
#
|
#
|
||||||
|
@ -25,10 +25,12 @@ cd etc
|
|||||||
|
|
||||||
cat > bootscript.sh << EOF
|
cat > bootscript.sh << EOF
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
dmesg -n 1
|
dmesg -n 1
|
||||||
mount -t devtmpfs none /dev
|
mount -t devtmpfs none /dev
|
||||||
mount -t proc none /proc
|
mount -t proc none /proc
|
||||||
mount -t sysfs none /sys
|
mount -t sysfs none /sys
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
chmod +x bootscript.sh
|
chmod +x bootscript.sh
|
||||||
@ -55,12 +57,18 @@ tty3::once:cat /etc/welcome.txt
|
|||||||
tty3::respawn:/bin/sh
|
tty3::respawn:/bin/sh
|
||||||
tty4::once:cat /etc/welcome.txt
|
tty4::once:cat /etc/welcome.txt
|
||||||
tty4::respawn:/bin/sh
|
tty4::respawn:/bin/sh
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
echo '#!/bin/sh' >> init
|
cat > init << EOF
|
||||||
echo 'exec /sbin/init' >> init
|
#!/bin/sh
|
||||||
|
|
||||||
|
exec /sbin/init
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
chmod +x init
|
chmod +x init
|
||||||
|
|
||||||
cp ../../*.sh src
|
cp ../../*.sh src
|
||||||
|
Loading…
x
Reference in New Issue
Block a user