* Add source files directly to avoid recreating patches and patches lots of times with no gain. * Add du and expr busybox symlinks at init time. Bump revision. --HG-- extra : convert_revision : 4928750b0110f43cde577f6068e79bd0675c64cf
27 lines
361 B
Bash
Executable file
27 lines
361 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PREREQ=""
|
|
prereqs()
|
|
{
|
|
echo "$PREREQ"
|
|
}
|
|
case $1 in
|
|
# get pre-requisites
|
|
prereqs)
|
|
prereqs
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
OPTS="-q"
|
|
|
|
# Should terminal be in UTF8 mode?
|
|
if [ -x /sbin/kbd_mode ]; then
|
|
/sbin/kbd_mode -u
|
|
OPTS="${OPTS} -u"
|
|
fi
|
|
|
|
# Load custom keymap
|
|
if [ -x /sbin/loadkeys -a -r /etc/boottime.kmap.gz ]; then
|
|
loadkeys ${OPTS} /etc/boottime.kmap.gz
|
|
fi
|