Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Naruto1310

Pages: [1]
1
TI-Nspire / Re: Protect your TI-Nspire files: nProtect and nHide
« on: March 02, 2014, 06:12:17 am »
That's what I end up doing most of the time, but it's quite inconvenient. It limits some functions, you always get a popup and you can't just turn it off afterwards.
Also for some reason we're not allowed to use Press-To-Test mode and the file browser shows when it's enabled.

2
TI-Nspire / Re: Protect your TI-Nspire files: nProtect and nHide
« on: March 01, 2014, 04:05:28 am »
Every time we write a test at school we have to delete all of our files and show the empty folder to the teacher. With nHide and Hide Manager you can hide your own files, but not ndless itself.
Can you make it so that when you access the file system using the regular key you will browse a folder like /Documents/Documents. Only if you press the magic key you can access /Documents. Like nHide in reverse.
Someone who doesn't know of this magic key would think the calculator is totally empty.

(And no, I'm not planning to cheat during a test. I just want to keep all my applications, savegames and ndless)

3
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: February 23, 2013, 10:19:55 am »
Yes! This works now too. Thanks again.

Now to figure out how Bluetooth and tethering works...

4
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: February 22, 2013, 04:26:59 pm »
Thanks, X is running now too.

5
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: February 22, 2013, 03:32:23 pm »
On PC it seems to be read-only too.
Code: [Select]
user@ixtremeM5850b:~/Downloads$ fsck.ext4 /dev/sdh
e2fsck 1.42 (29-Nov-2011)
fsck.ext4: Permission denied while trying to open /dev/sdh
You must have r/w access to the filesystem or be root
user@ixtremeM5850b:~/Downloads$ sudo fsck.ext4 /dev/sdh
e2fsck 1.42 (29-Nov-2011)
Filesystem did not have a UUID; generating one.

/dev/sdh contains a file system with errors, check forced.
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
/dev/sdh: 3320/3784 files (0.5% non-contiguous), 70671/83896 blocks
I reformatted it to make sure everything is right, but still the same result.

6
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: February 22, 2013, 02:56:36 pm »
Yes that happened to me when I mounted it. What device file did you use?
I'm using /dev/sda. (I hope you don't notice that I have no idea what a device file is :))

You can try to
Code: [Select]
mount --bind /dev /mnt/dev
mount --bind /sys /mnt/sys
mount --bind /proc /mnt/proc
mount -t devpts none /mnt/dev/pts
chroot /mnt
startx
That seems to mount the drive as read-only filesystem. X does not work, but nano and mplayer do.

7
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: February 22, 2013, 03:32:38 am »
Yes, I am mounting it that way. I can see the files on the drive, but the programs don't work.

Code: [Select]
# /mnt/usb/usr/bin/nano
/mnt/usb/usr/bin/nano: can't resolve symbol 'stat64'
# /mnt/usb/usr/bin/startx
/mnt/usb/usr/bin/startx: line 202: /usr/bin/mcookie: not found
Couldn't create cookie

8
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: February 21, 2013, 11:26:55 am »
There's a maintenance menu and a diagnostics menu. Which one did you boot to? Booting into diags and running the NAND tests has always worked for me.
Thanks, the calculator is booting again.

By rootfs do you mean the USB drive?
You may want to use the initrd and try to mount the USB flash drive in there, then use the device that works to boot (sda, sda1, ...) in your boot script.
Make sure to connect the OTG cable to the calculator before starting the bootloader.
Yes, I mean the USB drive.
When booting the initrd, how do I mount the USB drive as rootfs? If I mount it normally, it doesn't work right.
I am using the same setup that I used for running the first version that supported USB host. That version still works. Only the new builds are causing problems.

9
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: February 21, 2013, 06:06:23 am »
@Naruto: Try doing the following:

1. Rename your "linux" folder to "linux old"
2. Create a new "linux" folder
3. Download all the files needed to run Linux (Do not use any of the ones you already have)
4. Place them in the new "linux" folder and try booting linux (use a initrd first to make sure it works)

This worked in my case.
The initrd works.
As I tried lauchning it using it using the latest rootfs, it displayed a lot more stuff than before. At the end it just repeated the line "can't run '/sbin/getty' no such file or directory", so I pressed the reset button. When the calculator reboots now, it just shows the loading screen background and the clock icon in the middle. I already tried accessing the service menu and doing a complete format. But after installing a new OS it still won't boot. What to do now?

10
TI-Nspire / Re: Calling all Linux Kernel developers!
« on: February 20, 2013, 04:46:40 pm »
How do I use the recent builds? I manage to run the first one with USB host function. But when I replace the zImage with one of the recent ones (tried expanded and defconfig), it gets suck after the "boot" line in the linuxloader. So I don't even get to connecting the rootfs. Is the bootscript still
Code: [Select]
kernel linux/zImage.tns
cmdline root=/dev/sda earlyprintk debug console=tty0 console=ttyAMA0,115200n8 rootdelay=10
boot
?

Pages: [1]