Linux on a RK3368 eReader


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Linux on a RK3368 eReader
# 1  
Old 10-06-2018
Linux on a RK3368 eReader

Hello! There is a new eReader on the market called Boyue Likebook Mars. It has the processor RK3368, so its a Octa-core with 2 Gb of RAM, and it seems very promising, but Boyue did a mess with the firmware, making it so limited. So maybe there is the oportunity to install linux there.

I searched and I found a project on github talking about this, but not on an eReader. Aparently there are some Android TV Boxes with the same specs, and they can install linux there. I can imagine it should not be so easy as to just install it on the eReader, but maybe more than the half of the work is done with this github project. (I can't write the adress because I am new here, but it's easy to find if you google "linux rk3368")

Can anyone who understand all this world better than me (not so hard to happen) explain me a little about this possibility? I think maybe the more problematic thing it would be the eInk display.

Thanks in advance to everyone
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Fedora

Which is the better platform to learn UNIX/Linux (Kali Linux Vs. Red Hat or other)?

I just started a new semester and I started my UNIX class yesterday. I've already decided to use python along with my learning process but what I really want to use with it is Kali as my UNIX/Linux platform to learn off of since I already wanted to learn Cyber Sec. anyways. I just wanted to know if... (12 Replies)
Discussion started by: ApacheOmega
12 Replies
Login or Register to Ask a Question
MODIFY_LDT(2)						     Linux Programmer's Manual						     MODIFY_LDT(2)

NAME
modify_ldt - get or set ldt SYNOPSIS
#include <linux/ldt.h> #include <linux/unistd.h> _syscall3( int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount ) int modify_ldt(int func, void *ptr, unsigned long bytecount); DESCRIPTION
modify_ldt reads or writes the local descriptor table (ldt) for a process. The ldt is a per-process memory management table used by the i386 processor. For more information on this table, see an Intel 386 processor handbook. When func is 0, modify_ldt reads the ldt into the memory pointed to by ptr. The number of bytes read is the smaller of bytecount and the actual size of the ldt. When func is 1, modify_ldt modifies one ldt entry. ptr points to a modify_ldt_ldt_s structure and bytecount must equal the size of this structure. RETURN VALUE
On success, modify_ldt returns either the actual number of bytes read (for reading) or 0 (for writing). On failure, modify_ldt returns -1 and sets errno. ERRORS
ENOSYS func is neither 0 nor 1. EINVAL ptr is 0, or func is 1 and bytecount is not equal to the size of the structure modify_ldt_ldt_s, or func is 1 and the new ldt entry has invalid values. EFAULT ptr points outside the address space. CONFORMING TO
This call in Linux-specific and should not be used in programs intended to be portable. SEE ALSO
vm86(2) Linux 1.3.6 1995-07-22 MODIFY_LDT(2)