view sources/native/sbin/init.sh @ 880:b0aeb3446aa5

Some packages build differently as root than as a normal user, so add a "guest" account giving a non-root user option. Tweak mdev so it's vaguely useful. (Thanks to Vladimir Dronnikov for the idea.)
author Rob Landley <rob@landley.net>
date Sun, 08 Nov 2009 16:05:48 -0600
parents 4bfe2b34dd9f
children c48fc63b7df7
line wrap: on
line source

#!/bin/sh

# Otherwise, building source packages wants things like /bin/bash and
# running the results wants /lib/ld-uClibc.so.0, so set up some directories
# and symlinks to let you easily compile source packages.

export HOME=/home

# Populate /dev
mountpoint -q sys || mount -t sysfs sys sys
mountpoint -q dev || mount -t tmpfs -o noatime dev dev
mdev -s

# Make sure /proc is there
mountpoint -q proc || mount -t proc proc proc

# If we're running under qemu, do some more setup
if [ $$ -eq 1 ]
then

  # Note that 10.0.2.2 forwards to 127.0.0.1 on the host.

  # Setup networking for QEMU (needs /proc)
  ifconfig eth0 10.0.2.15
  route add default gw 10.0.2.2

  # If we have no RTC, try rdate instead:
  [ "$(date +%s)" -lt 1000 ] && rdate 10.0.2.2 # or time-b.nist.gov

  mount -t tmpfs /tmp /tmp

  # If there's a /dev/hdb or /dev/sdb, mount it on home

  [ -b /dev/hdb ] && HOMEDEV=/dev/hdb
  [ -b /dev/sdb ] && HOMEDEV=/dev/sdb
  if [ ! -z "$HOMEDEV" ]
  then
    mount -o noatime $HOMEDEV /home
  else
    mount -t tmpfs /home /home
  fi
  cd /home

  [ -b /dev/hdc ] && MNTDEV=/dev/hdc
  [ -b /dev/sdc ] && MNTDEV=/dev/sdc
  if [ ! -z "$MNTDEV" ]
  then
    mount -o ro $MNTDEV /mnt
  fi

  CONSOLE="$(dmesg |
    sed -n '/^Kernel command line:/s@.* console=\(/dev/\)*\([^ ]*\).*@\2@p')"

  if [ -z "$DISTCC_HOSTS" ]
  then
    echo "Not using distcc."
  else
    echo "Distcc acceleration enabled."
  fi
  echo Type exit when done.

  HANDOFF=/bin/ash
  [ -e /mnt/init ] && HANDOFF=/mnt/init
  exec /bin/oneit -c /dev/"$CONSOLE" "$HANDOFF"

# If we're not PID 1, it's probably a chroot.
else
  [ ! -z $(grep "default for QEMU" /etc/resolv.conf) ] &&
    echo "nameserver 4.2.2.1" > /etc/resolv.conf

  # Switch to a shell with command history.

  echo Type exit when done.
  /bin/ash
  cd /
  umount ./dev
  umount ./home
  umount ./sys
  umount ./proc
  sync
fi