Legacy Uboot (Working) =====

Total Page:16

File Type:pdf, Size:1020Kb

Legacy Uboot (Working) ===== 2021/09/23 21:05 1/4 legacy kernel 4.2 (partially working) <code bash> pacman -S arm-none-eabi-gcc uboot-tools git clone https://github.com/Sekilsgs2/i9100_kernel_mainline_port.git cd i9100_kernel_mainline_port export ARCH=arm export CROSS_COMPILE=arm-none-eabi- make i9100_defconfig make -j6 sh mk.sh sh mod.sh # heimdall flash –KERNEL boot.img </code> xda method flashing kernel: https://forum.xda-developers.com/galaxy-s2/general/uboot-bootloader-true-multiboot-t1680898 postmarketos aports https://gitlab.com/postmarketOS/pmaports/tree/master/device/linux-samsung-i9100 http://postmarketos.brixit.nl/postmarketos/master/armhf/linux-samsung-i9100-3.0.101-r13.apk <code bash> git clone git:git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git cd linux- stable git checkout tags/5.4.5 wget "https://raw.githubusercontent.com/Sekilsgs2/i9100_kernel_mainline_port/6c02dad36b8a76a6f5 0d26ff1b9abb0d30aacbc9/arch/arm/configs/i9100_defconfig" -O arch/arm/configs/i9100_defconfig wget "https://raw.githubusercontent.com/Sekilsgs2/i9100_kernel_mainline_port/master/arch/arm/boot /dts/exynos4210-i9100.dts" -O arch/arm/boot/dts/exynos4210-i9100.dts wget "https://raw.githubusercontent.com/Sekilsgs2/i9100_kernel_mainline_port/master/arch/arm/boot /dts/exynos4210.dtsi" -O arch/arm/boot/dts/exynos4210.dtsi # patch file arch/arm/boot/dts/Makefile export ARCH=arm export CROSS_COMPILE=arm-none-eabi- make i9100_defconfig make -j6 make dtbs cat arch/arm/boot/zImage arch/arm/boot/dts/exynos4210- i9100.dtb > zimage mkimage -A arm -O linux -T kernel -C none -a 0x40008000 -e 0x40008000 -n Linux-android-sucks -d zimage boot.img make modules_install INSTALL_MOD_PATH=../ </code> * archlinuxarm https://archlinuxarm.org/forum/viewtopic.php?f=27&t=5284 * https://github.com/Sekilsgs2/i9100_kernel_mainline_port/issues/1 postmarketos binaries chroot <code> gio: ELF 32-bit LSB pie executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-musl-armhf.so.1, stripped </code> archlinuxarm binary http://os.archlinuxarm.org/os/ArchLinuxARM-odroid-x-latest.tar.gz <code> gio: ELF 32-bit LSB pie executable, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=6c5eae3cb78debe406df57f20e99c2462f764c85, for GNU/Linux 3.2.0, stripped </code> * rootfs armv7? <code bash> pacman -U dtc-1.4.1-1-x86_64.pkg.tar.xz # downgrade to older version pacman -S gcc-arm-none-eabi-bin-49 git clone https://github.com/Sekilsgs2/i9100-uboot.git git clone https://github.com/Sekilsgs2/toolchain_for_old_uboot.git cd i9100-uboot export PATH="/usr/local/arm/gcc-arm-none-eabi-4_9-2015q3/bin:$PATH" # set -gx PATH /usr/local/arm/gcc-arm-none-eabi-4_9-2015q3/bin $PATH export ARCH=arm export CROSS_COMPILE=arm-none-eabi- make galaxys2_config make galaxys2 # heimdall flash –kernel u- boot.bin </code> * bug report using mainline kernel galaxy s2 https://github.com/Sekilsgs2/i9100_kernel_mainline_port/issues/1#issuecomment-565706956 * xda post mainline kernel samsun s2 https://forum.xda-developers.com/galaxy-s2/general/port-run-mainline-linux-kernel-t3901190 * uboot 9100 sources * https://github.com/Talustus/i9100-uboot * https://github.com/astarasikov <code bash> heimdall flash –KERNEL u-boot.bin heimdall flash –RECOVERY uImage </code> <code> Well, to boot the custom kernel, you need to put it to the "/sdcard/boot/vmlinux.uimg", not to the external sd card. The rootfs should be put to the second partition of the external microSD (mmcblk1p2), but you can recompile the kernel and put any cmline there. </code> convert zImage into uImage <code bash> mkimage -A arm -O linux - T kernel -C none -a 0x40008000 -e 0x40008000 -n Linux-android-sucks -d zImage uImage </code> u-boot trats https://forum.xda-developers.com/galaxy-s2/general/boot-sources-i9100-t1694523 <code bash> Project-Insanity - https://wiki.project-insanity.org/ Last update: 2021/09/21 12:13 samsung-i9100 https://wiki.project-insanity.org/samsung-i9100 git clone git:git.denx.de/u-boot.git cd u-boot export ARCH=arm export CROSS_COMPILE=arm-none- eabi- make trats_config make all </code> ===== legacy uboot (working) ===== pacman -U dtc-1.4.1-1-x86_64.pkg.tar.xz # downgrade to older version pacman -S gcc-arm-none-eabi-bin-49 git clone https://github.com/Sekilsgs2/i9100-uboot.git git clone https://github.com/Sekilsgs2/toolchain_for_old_uboot.git cd i9100-uboot export PATH="/usr/local/arm/gcc-arm-none-eabi-4_9-2015q3/bin:$PATH" # set - gx PATH /usr/local/arm/gcc-arm-none-eabi-4_9-2015q3/bin $PATH export ARCH=arm export CROSS_COMPILE=arm-none-eabi- make galaxys2_config make galaxys2 heimdall flash --KERNEL u-boot.bin legacy kernel 4.2 (partially working) <code bash> git clone https://github.com/Sekilsgs2/i9100_kernel_mainline_port.git cd i9100_kernel_mainline_port export ARCH=arm export CROSS_COMPILE=arm-none-eabi- make i9100_defconfig make -j6 cat arch/arm/boot/zImage arch/arm/boot/dts/exynos4210-i9100.dtb > zimage mkimage -A arm -O linux -T kernel -C none -a 0x40008000 -e 0x40008000 -n Linux-android- sucks -d zimage boot.img make modules_install INSTALL_MOD_PATH=../ heimdall flash –RECOVERY boot.img </code> prepare rootfs <code bash> heimdall flash –FACTORYFS … </code> http://os.archlinuxarm.org/os/ArchLinuxARM-odroid-latest.tar.gz http://de4.mirror.archlinuxarm.org/os/ArchLinuxARM-armv7-latest.tar.gz try <code bash> "console=ttyS0,115200n8 root=UUID=e139ce78-9841-40fe-8823-96a304a09859 rootwait ro no_console_suspend vdaccfg=0xa000 logo=osd" </code> <code> setenv loadaddr 0x70800000 setenv bootargs_mmc 'setenv bootargs ${bootargs} root=/dev/mmcblk0p1 ip=none rootfstype=ext4' setenv bootcmd_mmc 'run bootargs_base bootargs_mmc; mmc dev 0; mmc read ${loadaddr} 0x800 0x1800; bootm' setenv bootcmd 'run bootcmd_mmc' saveenv </code> <code> bootpart=1:1 devtype=mmc bootdir= bootfile=zImage bootpartition=mmcblk1p2 set_bootargs=setenv bootargs console=ttyO0,115200n8 root=/dev/${bootpartition} rw rootfstype=ext4 rootwait uenvcmd=run set_bootargs;run loadimage;run loadfdt;printenv bootargs;bootz ${loadaddr} - ${fdtaddr} </code> Next steps Move everything to local and make bash script flash.sh https://github.com/postmarketOS/pmbootstrap/blob/master/aports/main/heimdall/heimdal l_wait_for_device.sh try with mmcblk0p11 https://github.com/Sekilsgs2/i9100_kernel_mainline_port/issues/1#issuecomment-566525856 uboot debugging, if mmc rescan https://archlinuxarm.org/forum/viewtopic.php?f=33&t=8292#p44462 check archlinuxarm bootparams for uboot make serial access https://wiki.project-insanity.org/ Printed on 2021/09/23 21:05 2021/09/23 21:05 3/4 legacy kernel 4.2 (partially working) <code> CONFIG_USB_ETH=y CONFIG_USB_ETH_RNDIS=y CONFIG_USB_ETH_EEM=y </code> <file - /etc/systemd/network/usb0.network> [Match] Name=usb0 [Network] DNS=192.168.2.1 IPv6PrivacyExtensions=true [Address] Address=192.168.7.18/30 [Route] Gateway=192.168.7.17 </file> https://wiki.postmarketos.org/wiki/Kernel_configuration#CONFIG_USB_ETH BCM4330 https://wiki.postmarketos.org/wiki/Samsung_Galaxy_SII_(samsung- i9100)#WiFi_.2F_Bluetooth_.2F_FM_radio https://archlinuxarm.org/packages/armv7h/firmware-brcm43xx micro-usb-usb-dongle keyboard :D https://raw.githubusercontent.com/TheMuppets/proprietary_vendor_samsung/cm-14.1/i9100/pro prietary/system/etc/wifi/nvram_net.txt https://github.com/respeaker/rkbin/raw/master/firmware/bluetooth/BCM4330B1.hcd http://mirror.archlinuxarm.org/aarch64/core/wireless-regdb-2019.06.03-2-any.pkg.tar.xz https://github.com/TheMuppets/proprietary_vendor_samsung/tree/lineage-17.0/i9100/proprietar y/system/etc/wifi https://github.com/TheMuppets/proprietary_vendor_samsung/raw/lineage-17.0/i9100/proprietar y/system/etc/wifi/bcmdhd_sta.bin as brcmfmac4330-sdio.bin <code bash> pacman-key –init pacman-key –populate archlinuxarm </code> create package linux-firmware-samsung-i9100 or something use mainline kernel supplied by archlinuxarm, using dtb kernel boot args document everything we have so far iwd & sshd <code bash> systemctl enable –now iwd systemd-networkd systemd-resolved sshd ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf </code> <file - /etc/systemd/network/wlan0.network> [Match] Name=< name of your wifi interface or * for every interface > [Network] DHCP=yes IPv6PrivacyExtensions=true </file> <code> RFKILL=y CONFIG_KEY_DH_OPERATIONS=y </code> <code bash> dd of=archlinuxarm.img bs=1 seek=10G count=0 mkfs.ext4 -F archlinuxarm.img mount archlinuxarm.img arm-chroot pacman -S qemu-arm-static systemctl start systemd-binfmt wget "http://de4.mirror.archlinuxarm.org/os/ArchLinuxARM-armv7-latest.tar.gz" bsdtar -xpf ArchLinuxARM-armv7-latest.tar.gz -C arm-chroot arch-chroot arm-chroot # pacman-key –init # pacman-key –populate archlinuxarm # pacman -Syu base-devel </code> <code bash> pacman -S phosh gnome-session gnome-shell </code> check patched files by Sekilsgs2 as i said before: start just phoc to get that running first: e.g. phoc -E 'weston-terminal' once that works you can then start phosh from that terminal and once that works bring gnome-session into the mix. that allows us to debug all parts independently. @lcd dts: flip-horizontal;, flip-vertical; Project-Insanity - https://wiki.project-insanity.org/ Last update: 2021/09/21 12:13 samsung-i9100 https://wiki.project-insanity.org/samsung-i9100
Recommended publications
  • Download Android Os for Phone Open Source Mobile OS Alternatives to Android
    download android os for phone Open Source Mobile OS Alternatives To Android. It’s no exaggeration to say that open source operating systems rule the world of mobile devices. Android is still an open-source project, after all. But, due to the bundle of proprietary software that comes along with Android on consumer devices, many people don’t consider it an open source operating system. So, what are the alternatives to Android? iOS? Maybe, but I am primarily interested in open-source alternatives to Android. I am going to list not one, not two, but several alternatives, Linux-based mobile OSes . Top Open Source alternatives to Android (and iOS) Let’s see what open source mobile operating systems are available. Just to mention, the list is not in any hierarchical or chronological order . 1. Plasma Mobile. A few years back, KDE announced its open source mobile OS, Plasma Mobile. Plasma Mobile is the mobile version of the desktop Plasma user interface, and aims to provide convergence for KDE users. It is being actively developed, and you can even find PinePhone running on Manjaro ARM while using KDE Plasma Mobile UI if you want to get your hands on a smartphone. 2. postmarketOS. PostmarketOS (pmOS for short) is a touch-optimized, pre-configured Alpine Linux with its own packages, which can be installed on smartphones. The idea is to enable a 10-year life cycle for smartphones. You probably already know that, after a few years, Android and iOS stop providing updates for older smartphones. At the same time, you can run Linux on older computers easily.
    [Show full text]
  • Nokia Pronta Ad Usare Linux Sui Suoicellulari
    Nokia Pronta Ad Usare Linux Sui Suoi cellulari 1 / 5 Nokia Pronta Ad Usare Linux Sui Suoi cellulari 2 / 5 000 risultati in "cellulari a conchiglia nokia" Passa ai risultati principali della ricerca ... RIM ha pronto al lancio un nuovo smartphone a conchiglia, il BlackBerry ... Tasti Grandi, Facile da usare con SOS (Nero) 3,8 su 5 stelle 468 52,99 € 52,99 €. ... come un'impronta digitale, arrotolata su sé stessa, marcata dai suoi vicoli che ... Gestione proxy con soluzione pronta all'uso rispetto ad una interna ... requisiti di base e molte soluzioni di gestione proxy su più funzionalità. Pro e contro di ogni opzione. Ogni opzione di gestione proxy ha i suoi pro e contro. ... guida Immagini Internet iPhone Linux Mac Microsoft mozilla firefox Musica .... Un sistema operativo perfetto e in grado di rispondere al meglio a ... Chi scrive preferisce utilizzare Linux sui suoi computer per via della sua .... Oggi visto il tempo poco disposto all'avvicinarsi della primavera, Xiaomi ci dedica un nuovo prodotto pronto ad illuminare questo periodo buio, pieno di .. La storia della telefonia cellulare: la Nokia, la Motorola, la Apple. ... Avendo bisogno necessariamente di ingenti capitali per proseguire nei suoi esperimenti, ... Grazie ai brevetti di Marconi, le industrie cominciarono a produrre su scala ... Google comincia a rifornire i produttori del suo OS mobile, derivato dal kernel Linux, ... Piezo Crack APP Download version 1.5.4 (Read description) MacOSX A questo devono aver pensato i responsabili di HMD, la società che proprio ... Nokia, ecco i 30 cellulari che hanno fatto la storia ... Sarà per la sua semplicità, per i suoi tastini gommosi o la sua autonomia da 10 iPhone messi assieme.
    [Show full text]
  • Unix on Mobile Devices
    Unix on mobile devices Jozef Mlích Department of Computer Graphics and Multimedia Brno University of Technology, Faculty of Information Technology Božetěchova 2, 612 66 Brno, Czech Republic [email protected] http://www.fit.vutbr.cz/~imlich/ Application Development for Mobile DevicesTAM 21.11.20172017 | 1 / 44 Agenda Why? Who? How? What? Boot Filesystem and storage Kernel / drivers / api / interfaces Inter-process communication (DBUS) GUI (libhildon, Qt) Compilation, Cross compilation Remote debugging, Deployment Emulation / Virtualization Profiling Packaging Profit http://www.fit.vutbr.cz/~imlich/ TAM 2017 | 2 / 44 Motivation Lifetime of phone hardware is long ~ 10 years Except of battery Lifetime of software is much sorter – Android 2-3 years of updates – iOS up to 5 years of updates – New APIs , Web standards are changing – Support for new hardware / for old hardware – Security (CVEs) Could be old phone used as core of embedded system? – Main board? Webcam? HVAC? IoT? – Phone – ... http://www.fit.vutbr.cz/~imlich/ TAM 2017 | 3 / 44 Cemetery of mobile phones and it’s operating systems Greenphone Openmoko – SHR, Hackable:1, QtMoko Symbian Nokia N900 – Maemo Nokia N9 – MeeGo Harmattan Firefox OS Tizen Blackberry Playbook, BB10 Ubuntu Phone Windows Phone WebOS PalmOS Bada http://www.fit.vutbr.cz/~imlich/ TAM 2017 | 4 / 44 Some survivors of mobile phone evolution Jolla – SailfishOS - https://jolla.com/ Neo900 - http://neo900.org/ Mer project/Nemo – https://wiki.merproject.org/wiki/Nemo – https://wiki.merproject.org/wiki/Adaptations/libhybris
    [Show full text]
  • 最近の事と来年の目標 in 2020 1 Recently My Activity and the Next Year’S Goal in 2020
    最近の事と来年の目標 in 2020 1 Recently my activity and the next year’s goal in 2020 FZ-G1+Lubuntu20.04 in128GB USB memory 1、 自己紹介 Self introduction 2、Recently my activities 3、Non eMMC Windows Tablet? 4、Install Linux in The third Mobile OSs 5、Install Linux in UMPC 6、Install Linux in Macbook,PowerbookG4 7、USB Wifi and USB HDMI capture 8、Recently my activity 詳しい話はSlideshareで公開中 This Presentation: @kapper1224 Slideshare & PDF files publication of my HP http://kapper1224.sakura.ne.jp 鹿児島らぐ 2020年12月 Gadget Hacking 2020 年12月26日 14:00~ User Group Place: Online Speaker:Kapper 自己紹介 Self Introduction 2 ● My name: Kapper ● Twitter account:@kapper1224 ● HP:http://kapper1224.sakura.ne.jp ● Slideshare: http://www.slideshare.net/kapper1224 ● Mastodon:https://pawoo.net/@kapper1224/ ● Facebook:https://www.facebook.com/kapper1224/ ● My Hobby:Linux、*BSD、and Mobile Devices ● My favorite words:The records are the more important than the experiment. ● Test Model:Netwalker(PC-Z1,T1)、Nokia N900、DynabookAZ、RaspberryPi Nexus7(2012、2013)、Nexus5、Chromebook、Fx0(FirefoxOS)、 無敵CD-920、CD-928,GPD-WIN、GPD-Pocket、Macbook NANOTE、Windows Tablet、SailfishOS、UBPorts、postmarketOS ● Recent my Activity: Hacking Linux on Windows10 Tablet (Intel Atom) and Android Smartphone. Hacking NetBSD and OpenBSD on UEFI and Windows Tablet. I have been exhibiting in NT Nagoya, NT Kanazawa, Oogaki Mini MakerFaire. I have over 200 Windows Tablet and 120 ARM Android, and test it now. 後、最近小説家になろうで異世界で製造業と産業革命の小説書いていますなう。 Recently my activities 3 NetBSD、OpenBSD、FreeBSD SailfishOS on UBPorts on Nexus5 MaruOS Some Linux on Windows Tablet Nexus5 Nexus7 2013 on Nexus5X postmarketOS on Install Linux and *BSD Nexus5, Nexus7 2012 In USB memory Activities on NT, MakerFaire,Taiwan 異世界転生小説を書いています。 4 This is my novels 「The otherworldy 」 ● 中世〜近世で製造業で産業革命するネタ。 It is 「Industrial Revolutions」 in the early modern period in my novels.
    [Show full text]
  • はじめてのpostmarketosインストール スマートフォン
    はじめてのpostmarketOSインストール スマートフォン 1 Beginner for install postmarketOS in Smartphone postmarketOS 1、 自己紹介 Self introduction and Nexus5 2、Recently my activities 3、What’s postmarketOS? 4、Surpported devices 5、Install postmarketOS on Nexus5 6、Hacking Nexus5 about US$ 40. 7、pmbootstrap.py 8、Known issues 詳しい話はSlideshareで公開中 @kapper1224 This Presentation: Slideshare & PDF files publication of my HP http://kapper1224.sakura.ne.jp Gadget Hacking 東海道らぐ横浜 2019年5月18日 13:00〜 Place: 神奈川県横浜市西区高島2-6-32 User Group 株式会社ジェイエスピー 会議室Red Speaker:Kapper 2 自己紹介 Self Introduction ● My name: Kapper ● Twitter account:@kapper1224 ● HP:http://kapper1224.sakura.ne.jp ● Slideshare: http://www.slideshare.net/kapper1224 ● ニコナレ: http://niconare.nicovideo.jp/users/59379263 ● Facebook:https://www.facebook.com/kapper1224/ ● My Hobby:Linux、*BSD、and Mobile Devices ● My favorite words:The records are more important than the experiment. ● Test Model:Netwalker(PC-Z1,T1)、Nokia N900、DynabookAZ、RaspberryPi Nexus7(2012、2013)、Nexus5、OpenPandora、Chromebook、 Fx0(FirefoxOS)、台湾Android電子辞書 無敵CD-920、CD-928 GPD-WIN、GPD-Pocket、Windows Tablet、SailfishOS、UBPorts ● Recent my Activity: Hacking Linux on Windows10 Tablet (Intel Atom base). Hacking NetBSD and OpenBSD on UEFI and Windows Tablet. I have been exhibiting in NT Nagoya, NT Kanazawa, Oogaki Mini MakerFaire. I have over 120 Windows Tablet and 40 ARM Android, and test it now. Recently my activities 3 NetBSD、OpenBSD、FreeBSD Sailfish X on Xperia X UBPorts on Nexus5 Some Linux on Windows Tablet Nexus7 2013 postmarketOS on Reports Linux on Nexus5,
    [Show full text]
  • Universitat Politècnica De València
    UNIVERSITAT POLITÈCNICA DE VALÈNCIA Escuela Técnica Superior de Ingeniería del Diseño APLICACIÓN PARA EL CONTROL DE UNA PLANTA DE ELABORACIÓN DE CERVEZA TRABAJO FINAL DEL Grado en Ingeniería Electrónica Industrial y Automática REALIZADO POR Paula Berlanga López TUTORIZADO POR Juan Carlos Martínez González CURSO ACADÉMICO: 2019/2020 1 Tabla de Contenidos Índice de Figuras ....................................................................................................................... 5 Índice de Tablas ......................................................................................................................... 8 Resumen .................................................................................................................................... 9 Resum ........................................................................................................................................ 9 Abstract ................................................................................................................................... 10 1. Introducción ........................................................................................................................ 11 1.1. Motivación .................................................................................................................. 11 1.2. Objetivos y alcance del sistema .................................................................................. 11 2. Elaboración de la cerveza ...................................................................................................
    [Show full text]
  • Computer Engineering Subject
    DIRECTORATE OF TECHNICAL EDUCATION, CHENNAI-25 DIPLOMA EXAMINATIONS-APRIL-2019 DEPT : COMPUTER ENGINEERING SUBJECT : MOBILE COMPUTING QCODE/SUB CODE : 915/35262 PART -A 1. Define LAN.[ 2 marks] A local-area network (LAN) is a computer network that spans a relatively small area. Most often, LAN is confined to a single room, building or group of buildings, however, one LAN can be connected to other LANs over any distance via telephone lines and radio waves. 2. What is meant by Adhoc? [ 2 marks] An ad hoc network is a network that is composed of individual devices communicating with each other directly. The term implies spontaneous or impromptu construction because these networks often bypass the gatekeeping hardware or central access point such as a router 3. What is GSM network? [ 2 marks] GSM stands for Global System for Mobile Communication. GSM is the most widely accepted standard in telecommunications and it is implemented globally. It is a digital cellular technology used for transmitting mobile voice and data services. 4. Write the limitation of GPRS. [ 2 marks] Although GPRS will provide better data rates than is currently available, there are some limitations. • Speeds of 177.2kbps would require a user to use all eight timeslots without any error protection - which simply won't happen. Initial terminals are likely to use only 1-3 timeslots anyway, limiting the available bandwidth to a GPRS user. • When GPRS packets are sent to a destination they are sent in all different directions - allowing for the potential for one or some of those packets to be corrupted or even lost altogether during the data transmission over the radio link.
    [Show full text]
  • Galaxy Nexus I9250
    Schematics and service manual for i9250: Samsung_i9250_schem_sm.rar t=0x9c920b0cell=0x9c92168 [0,0] Contents: [Dobrica PavlinuÅ¡iÄ's random unstructured stuff] • Dobrica PavlinuÅ¡iÄ's random unstructured stuff (BLE) • Dobrica PavlinuÅ¡iÄ's random unstructured stuff (GSM modem over serial port) • Dobrica PavlinuÅ¡iÄ's random unstructured stuff (HID keyboard) • Dobrica PavlinuÅ¡iÄ's random unstructured stuff (Unlegacy Android) ♦ Dobrica PavlinuÅ¡iÄ's random unstructured stuff (kernel) • Dobrica PavlinuÅ¡iÄ's random unstructured stuff (OMAP4 USB boot) • Dobrica PavlinuÅ¡iÄ's random unstructured stuff (Odin) • Dobrica PavlinuÅ¡iÄ's random unstructured stuff (serial) • Dobrica PavlinuÅ¡iÄ's random unstructured stuff (UART modes) • Dobrica PavlinuÅ¡iÄ's random unstructured stuff (PostmarketOS) • Dobrica PavlinuÅ¡iÄ's random unstructured stuff (u-boot) 127|root@maguro:/ # cat /proc/cpuinfo Processor : ARMv7 Processor rev 10 (v7l) processor : 0 BogoMIPS : 1194.24 processor : 1 BogoMIPS : 1194.24 Features : swp half thumb fastmult vfp edsp thumbee neon vfpv3 CPU implementer : 0x41 CPU architecture: 7 CPU variant : 0x2 CPU part : 0xc09 CPU revision : 10 Hardware : Tuna Revision : 0009 Serial : 014994b30201c013 BLE • https://github.com/metc/galaxy-nexus-ble GSM modem over serial port • https://github.com/2b-as/xgoldmon HID keyboard • https://github.com/pelya/android-keyboard-gadget Unlegacy Android ASOP for OMAP4 devices: https://forum.xda-developers.com/galaxy-nexus/development/rom-omap4-aosp-project-t3334574 https://github.com/Unlegacy-Android/
    [Show full text]
  • GNU/Linux: Coming to a Phone Near You: Maemo Leste
    GNU/Linux: coming to a phone near you: Maemo Leste Merlijn Wajer November 2, 2019 November 2, 2019 1 / 55 Table of contents Mix of technical and non-technical parts I What and Why I History of Maemo and CSSU I Overview of components I Current status, news I Future plans, milestones I How you can participate/help November 2, 2019 2 / 55 What is Maemo Leste? I GNU/Linux I Mobile OS for phones and tablets I Based on Devuan (ascii release - Debian stretch based) I Soon to be based on Devuan beowulf - Debian buster I No vendor kernels: only mainline linux (with minimal patches) I Linux experience: freedom, hackability (want wireguard? no problem. btrfs? got you covered.) I Alpha stage November 2, 2019 3 / 55 Why Maemo Leste? I Need an OS for FOSSers I Tired of Android, other mobile OSes, broken promises about openness I Open, hackable, not locked down I Show that we can have a viable FOSS mobile OS I Community developed (!) November 2, 2019 4 / 55 History: Maemo Fremantle Mobile "hacker" OS made by Nokia for the N900. (And previous versions before that for the Nokia 770, Nokia 800, Nokia 810) Still usable today (still use it today) I Uses the debian package manager I GNU/Linux I Only some parts are open source I Still maintained by the community: CSSU (Community Seamless Software Update) I https://wiki.maemo.org/Fremantle closed packages I https://wiki.maemo.org/Free Maemo November 2, 2019 5 / 55 Idea: build on Maemo Fremantle's proven OS I Maemo Fremantle got a lot of things right, but hard to port because a lot of components are (or were) closed source.
    [Show full text]
  • Mitja Immonen
    Guiding smartphone users for better privacy Mitja Immonen BACHELOR’S THESIS November 2020 Degree Programme in Media and Arts Interactive Media ABSTRACT Tampereen ammattikorkeakoulu Tampere University of Applied Sciences Degree Programme in Media and Arts Interactive Media IMMONEN, MITJA: Guiding smartphone users for better privacy Bachelor's thesis 63 pages November 2020 Most people in developed countries own a modern smartphone. Smartphones are computers with various sensors and components integrated into a slab of metal and plastic. We carry these devices everywhere, oblivious to the extent of how much the devices can collect behavioral data about us. Every action on the internet leaves a trace behind. This data can be collected systematically to create predictions about people and share the information to advertisers. This thesis researches the different types and ways that data can be collected from smartphones. Using the research and public information as basis, a guide- line was created for the everyday smartphone user to have a toolset for taking back some of their lost privacy. People are becoming increasingly aware of the privacy risks that come with social media and other internet services, but for many of us it is still difficult to know how to prevent data collection and online privacy exploitation. This thesis aims to pro- vide guidance for better smartphone privacy in layman's terms. Keywords: data collection, smartphone, privacy, tracking 3 CONTENTS 1 INTRODUCTION .................................................................................
    [Show full text]
  • Xinxinli Blue Curves
    Pine64: Synapse on a SBC Cluster Matthew Petry @fire219:matrix.org (or @fire219:pine64.org) Agenda ● The Two Sides of Pine64 ● The RockPro64 Cluster ● Synapse on the Cluster? The Two Sides of Pine64 (how to make FOSS-friendly devices) Pine64 ● So what is it? ● According to Wikipedia: ● I guess that’s not really wrong, but there’s a bit more to it... Pine64 Hardware ● Do one thing and do it well: Make FOSS-friendly ARM hardware at lowest possible cost Pine A64 Pinebook Pro PinePhone Pine64, a bit more in depth ● Rather unusual: zero employees! ● Everyone within the organization is either a contractor, or volunteer. Two distinct entities: ● Business: Pine Store Ltd. (Manufacturing, Logistics, Sales, Official Support) ● Community: Pine64 (Main website, forum, wiki, chat rooms, social media) It takes two to tango ● Hardware is nice and all, but it’s not much good without the software to run on it! ● Most people watching this probably agree: Hardware businesses and FOSS usually don’t mix well – Official firmware often full of blobs, undecipherable without access to NDA-gated documentation Separation of Responsibilities ● The solution is rather simple: have the community handle software development! ● In short: – Business → Pine Store Ltd. → Hardware – Community → Pine64 → Software ● The two sides run independently, but work together to make a complete experience. Here’s a couple more benefits... Community Software is Diverse Software ● As an example, the PinePhone has firmware images available spanning several Linux distributions (PostmarketOS,
    [Show full text]
  • Responsible Technology and Ewaste
    Responsible Technology and eWaste ...work in progress Things to consider before buying a new phone There are lots of things you can do if you browse e.Foundation or xda Open Source and/or Socially Responsible Phones Pixel3 series + GrapheneOS Releases Officially supported by GrapheneOS. State of the art software security, open source, no google if you use GrapheneOS. Android so big amount of FLOSS apps available via F-Droid. Bittium State of the art security software+hardware, this video explains more No Google / Apple taking your data on the secured partition. The company seems to be careful about the sources for hardware manufacturing Android so big amount of FLOSS apps available via F-Droid Privacy hardware kill switches. PinePhone - an article about the PinePhone Everything Open Source, included most of the (all?) hardware Privacy hardware kill switches Choice of OS: postmarketOS, Debian, Ubuntu Touch and Sailfish OS (but probably not mature yet). LuneOS (HP WebOS fork) and Maemo Leste (Nokia Maemo fork) will also be supported, probably alongside unofficial Android ROMs from devices with similar hardware No Google / Apple taking your data by default Fairphone Fairphone 3 Open Source No Google taking your data by default The company is careful about the sources for hardware manufacturing and improving the market Android / Apple so big amount of FLOSS apps available via F-Droid Puri Librem 5 Everything Open Source, included most of the (all?) hardware Privacy hardware kill switches State of the art security software+hardware PureOS is a Linux based OS (maybe not that mature yet but supported by a Social purpose corporation with high-fees paying customs) No Google / Apple taking your data by default The company seems to be careful about the sources for hardware manufacturing Some info on security..
    [Show full text]