• 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:
Ivan Davidov 2014-08-23 21:23:44 +03:00
parent 46f4d20ae6
commit abaa655d4a
2 changed files with 11 additions and 3 deletions

View File

@ -2,7 +2,7 @@
#
# 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:
#

View File

@ -25,10 +25,12 @@ cd etc
cat > bootscript.sh << EOF
#!/bin/sh
dmesg -n 1
mount -t devtmpfs none /dev
mount -t proc none /proc
mount -t sysfs none /sys
EOF
chmod +x bootscript.sh
@ -55,12 +57,18 @@ tty3::once:cat /etc/welcome.txt
tty3::respawn:/bin/sh
tty4::once:cat /etc/welcome.txt
tty4::respawn:/bin/sh
EOF
cd ..
echo '#!/bin/sh' >> init
echo 'exec /sbin/init' >> init
cat > init << EOF
#!/bin/sh
exec /sbin/init
EOF
chmod +x init
cp ../../*.sh src