Apple iPad 1G (apple-ipad1g): Difference between revisions
Appearance
MartijnBraam (talk | contribs) No edit summary |
MartijnBraam (talk | contribs) Infobox updates |
||
Line 7: | Line 7: | ||
| releaseyear = 2010 | | releaseyear = 2010 | ||
| originalsoftware = iPhone OS 3.2 | | originalsoftware = iPhone OS 3.2 | ||
| pmoskernel = 5.3.0-rc6 | |||
| chipset = Apple A4 | | chipset = Apple A4 | ||
| cpu = 1x 1 GHz Cortex A8 | | cpu = 1x 1 GHz Cortex A8 | ||
Line 15: | Line 16: | ||
| architecture = armv7 | | architecture = armv7 | ||
| n-android = ✔ | | n-android = ✔ | ||
| status_usbnet = | | status_usbnet = N | ||
| status_flashing = | | status_flashing = P | ||
| status_touch = | | status_touch = N | ||
| status_screen = | | status_screen = P | ||
| status_wifi = | | status_wifi = N | ||
| status_xwayland = | | status_xwayland = | ||
| status_fde = | | status_fde = | ||
| status_mainline = | | status_mainline = Y | ||
| status_battery = | | status_battery = | ||
| status_3d = | | status_3d = N | ||
| status_accel = | | status_accel = | ||
| status_audio = | | status_audio = |
Revision as of 19:10, 26 August 2019
This device is marked as not booting.
![]() TTY on iPad | |
Manufacturer | Apple |
---|---|
Name | iPad (1G) |
Codename | apple-ipad1g |
Released | 2010 |
Hardware | |
Chipset | Apple A4 |
CPU | 1x 1 GHz Cortex A8 |
GPU | PowerVR SGX535 |
Display | 1024x768 |
Storage | 16/32/64GB |
Memory | 256MB |
Architecture | armv7 |
Software | |
Original software | iPhone OS 3.2 |
postmarketOS | |
Category | testing |
Pre-built images | no |
Mainline | yes |
postmarketOS kernel | 5.3.0-rc6 |
Contributors
- scintill
Progress
Can boot into a mainline linux kernel, but the bootloader isn't persistent so it can only boot tethered.
Booting
- Install syringe package in chroot
- Enter DFU mode (hold and with USB connected to computer)
- load openiboot
$ loadibec openiboot-ipad1g.bin
expect script for automating booting with oibc
:
#!/usr/bin/expect
spawn oibc
send "!/path/to/vmlinuz\r"
sleep 0.1
send "\r"
expect "Received file"
send "kernel \"console=tty0 PMOS_NO_OUTPUT_REDIRECT\"\r"
expect "Done: kernel"
send "!/path/to/initramfs\r"
sleep 0.1
send "\r"
expect "Received file"
send "initrd\r"
expect "Done: initrd"
send "wait_boot 15000\r"
expect "Done: boot"
- Set
console=ttySAC0
for UART console instead of framebuffer earlycon=s3c2410,0x82500000
andkeep_bootcon
may be useful too.