Quote:
Quote:
I have no idea what I'm doing when I can't use apt-get for updates. I see you have a script that says extract to the kernel folder...where is that? Do I download all 3 files on
http://www.powerdeveloper.org/platforms/efikamx/kernel ?
You only need the binaries (boot- and modules-) and once you got them to the Efika (use an SD card or USB stick) you just extract them as normal;
Code:
sudo mount /dev/sda1 /boot
sudo tar --lzma -xf boot-2.6.31.9-ER1-efikamx.tar.lzma -C /
sudo tar --lzma -xf modules-2.6.31.9-ER1-efikamx.tar.lzma -C /
sudo umount /boot
When you reboot it will be using the new kernel. You may also want to edit /etc/fstab to add the
Code:
/dev/sda1 /boot vfat defaults 0 0
line to it, to make it easier for next time by automounting the partition (they don't ship this way because trashing the boot partition is hard to fix :)
I got this error.. a bit of extra info that might be useful too. I starred out my username, as it has details of my real name.
*******@efikamx:~/stuff$ sudo mount /dev/sda1 /boot
*******@efikamx:~/stuff$ df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/root 3676352 1889656 1599944 55% /
none 257880 96 257784 1% /dev
none 257880 0 257880 0% /dev/shm
none 257880 84 257796 1% /var/run
none 257880 0 257880 0% /var/lock
none 257880 0 257880 0% /lib/init/rw
/dev/mmcblk0p1 1920704 5088 1915616 1% /home/*******/stuff
/dev/sda1 32018 2436 29582 8% /boot
*******@efikamx:~/stuff$ udo tar --lzma -xf boot-2.6.31.9-ER1-efikamx.tar.lzma -C /
-bash: udo: command not found
*******@efikamx:~/stuff$ sudo tar --lzma -xf boot-2.6.31.9-ER1-efikamx.tar.lzma -C /
tar: boot/type_id.bin: Cannot change ownership to uid 1000, gid 100: Operation not permitted
tar: boot/uImage: Cannot change ownership to uid 1000, gid 100: Operation not permitted
tar: Exiting with failure status due to previous errors
EDIT: A fellow efika owner(much more skilled than I with linux...and a former gentoo user.) told me not to worry about that error. Also, it worked! thanks!