View Single Post
Posts: 482 | Thanked: 550 times | Joined on Oct 2010
#39
Originally Posted by ArchiMark View Post
Will correct that typo, thanks.

Meantime,

I noticed that maybe I did screw up one of the early steps you mentioned....as you can see, there's a directory 'mnt' inside meego-modules which I assume wasn't suppose to be there....

Code:
root@debian:/home/archimark# cd ./meego-modules
root@debian:/home/archimark/meego-modules# ls
mnt
root@debian:/home/archimark/meego-modules# cd ./mnt
root@debian:/home/archimark/meego-modules/mnt# ls
acct  bin    config  default.prop  etc	 init.nokia.rc	initrd	lost+found  proc  sdcard  system	    ueventd.rc
and   cache  data    dev	   init  init.rc	lib	mnt	    sbin  sys	  ueventd.nokia.rc  usr
This is likely because you typed cp -r /mnt meego-modules/ instead of cp -r /mnt /meego-modules. To fix this (assuming you are in meego-modules/mnt/):
Code:
mv * ../
cd ..
rm -r mnt
 

The Following User Says Thank You to skykooler For This Useful Post: