Quote:
Originally Posted by Lmiller1708
Great work Nate.
For the LCDDENSITY this line of code won't work anymore?
Code:
LCDDENSITY=`/bin/grep -o "lcd.density=.*" /proc/cmdline | /bin/sed -e "s/.*lcd.density=//g" -e "s/ .*//g"`
if [ "$LCDDENSITY" != "" ] ; then
echo "ro.sf.lcd_density=$LCDDENSITY" >> /etc/default.prop
echo Setting ro.sf.lcd_density=$LCDDENSITY
fi
Also were you able to get Android booted?
And how did you make your initramfs?
|
I'm trying to cut down on boot time since we added a lot of stuff to initrd. The whole checking cmdline is redundant because we can already set it in build.prop (and it is already set to 240 in FRX04).
Quote:
Originally Posted by bheremans
I think it is a problem with the files in git. Most files should be links to the busybox executable. If you clone kaisers git, the files are links :
Code:
bhe@HP-dv3500-bhe:/tmp/test/initrd-kaiser/initrd/bin$ ls -ali
total 2544
549794 drwxr-xr-x 2 bhe bhe 12288 2011-02-04 15:40 .
549793 drwxr-xr-x 4 bhe bhe 4096 2011-02-04 15:40 ..
549796 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 [ -> busybox
549797 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 [[ -> busybox
549798 -rwxr-xr-x 1 bhe bhe 117460 2011-02-04 15:40 adbd
549799 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 addgroup -> busybox
549800 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 adduser -> busybox
549801 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 adjtimex -> busybox
549802 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 ar -> busybox
549803 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 arp -> busybox
549804 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 arping -> busybox
549805 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 ash -> busybox
549806 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 awk -> busybox
549807 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 basename -> busybox
549808 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 bbconfig -> busybox
549809 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 bunzip2 -> busybox
549810 -rwxr-xr-x 1 bhe bhe 1530860 2011-02-04 15:40 busybox
549811 lrwxrwxrwx 1 bhe bhe 7 2011-02-04 15:40 bzcat -> busybox
initrd-kaiser in android-initrd-kaiser - Gitorious
You could download it here as tar.gz to start test building : Tree for initrd-kaiser in android-initrd-kaiser - Gitorious
|
Excellent. Thanks for the heads up. What I was doing was opening the Vogue's initrd and replacing files with the ones I modified. I'll look at this later today. Once I get to work, I'll be testing the new initrd.lzma and initrd.gz I pumped out last night