I see in your .config
CONFIG_INITRAMFS_SOURCE=""
perhaps I need to use the proper initramfs?
# Run as root in a wheezy box # Installs debootstraped minimal wheezy on $BUILDDIR/linuxroot if not installed # see here for used tricks http://www.raspberrypi.org/phpBB3/viewtopic.php?f=9&t=850 BUILDDIR="/root"; if [ -d $BUILDDIR/linuxroot ]; then echo "Already installed wheezy on linuxroot" else apt-get -y install qemu-user-static binfmt-support debootstrap mkdir -p $BUILDDIR/linuxroot cd $BUILDDIR/linuxroot qemu-debootstrap --verbose --variant=minbase --arch=armhf --include=vim,wireless-tools,wpasupplicant,sudo \ wheezy $BUILDDIR/linuxroot http://ftp.debian.org/debian echo "nameserver 8.8.8.8" > $BUILDDIR/linuxroot/etc/resolv.conf echo "nameserver 194.224.52.4" >> $BUILDDIR/linuxroot/etc/resolv.conf echo "/dev/disk/by-label/linuxroot / ext4 rw,data=writeback,noatime,nodiratime 0 1" > $BUILDDIR/linuxroot/etc/fstab echo "tmpfs /var/run tmpfs defaults,noatime,nodiratime 0 0" >> $BUILDDIR/linuxroot/etc/fstab echo "tmpfs /var/log tmpfs defaults,noatime,nodiratime 0 0" >> $BUILDDIR/linuxroot/etc/fstab echo "tmpfs /tmp tmpfs defaults,noatime,nodiratime,mode=1777 0 0" >> $BUILDDIR/linuxroot/etc/fstab echo "tmpfs /var/lock tmpfs defaults,noatime,nodiratime 0 0" >> $BUILDDIR/linuxroot/etc/fstab echo "tmpfs /var/tmp tmpfs defaults,noatime,nodiratime 0 0" >> $BUILDDIR/linuxroot/etc/fstab echo "vm.swappiness=10" > $BUILDDIR/linuxroot/etc/sysctl echo "kernel.panic = 10" > $BUILDDIR/linuxroot/etc/sysctl #reboot on k panic echo "kernel.printk = 3 4 1 3" >> $BUILDDIR/linuxroot/etc/sysctl #less messages flooding console if [ ! -f /etc/passwd ]; then #copies local machine users if /etc/passwd is missing cp /etc/passwd /etc/shadow $BUILDDIR/linuxroot/etc/ fi fi
There are currently 1301 users online. 1 members and 1300 guests.
Most users ever online was 63,956 at 18:56 on 20 March 2025.
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, personalize advertising, and to analyze site activity. We may share certain information about our users with our advertising and analytics partners. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment