I think this will end up haveing several of the same bits as #2, with twobobs premade image, but it starts with this command, instead of downloading his image.
First clone your kindle - you must have already put your SSH key onto it.
- mkdir -p /chroots/kindle
- rsync -avP --numeric-ids --exclude='/dev' --exclude='/proc' --exclude='/sys' root@192.168.2.57:/ /chroots/kindle
Then working off these instructions to run apps from within it, download the qemu static, and a test file
- apt-get install qemu binfmt-support qemu-user-static
- dpkg --add-architecture armel
- apt-get update
- apt-get install libc6:armel
- wget http://http.us.debian.org/debian/poo...10-1_armel.deb
- dpkg -x hello_version_armel.deb hello_armel
Then install it into your kindl folders, and try to run things
- cp /usr/bin/qemu-arm-static /chroots/kindle/usr/bin
- cp ~/hello_armel/usr/bin/hello /chroots/kindle/usr/bin/
- chroot /chroots/kindle
[LIST]
Quote:
osboxes@osboxes:~$ sudo chroot /chroots/kindle/
/ # cd usr/bin/
/usr/bin # ./hello
Hello, world!
/usr/bin #
|
So far, all I have done with this is to run the test script there.