├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── autolabel.yml │ ├── ci.yml │ ├── deploy-site.yml │ ├── update-alpine-repo.yml │ └── upload-build.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── ISSUE_TEMPLATE.md ├── LICENSE.IOS ├── LICENSE.md ├── README.md ├── README_KO.md ├── README_ZH.md ├── SECURITY.md ├── app ├── AboutAppearanceViewController.h ├── AboutAppearanceViewController.m ├── AboutExternalKeyboardViewController.h ├── AboutExternalKeyboardViewController.m ├── AboutNavigationController.h ├── AboutNavigationController.m ├── AboutViewController.h ├── AboutViewController.m ├── AccessibilityFixes.m ├── AltIconViewController.h ├── AltIconViewController.m ├── App.xcconfig ├── AppDelegate.h ├── AppDelegate.m ├── AppGroup.h ├── AppGroup.m ├── AppLib.xcconfig ├── AppStore.xcconfig ├── ArrowBarButton.h ├── ArrowBarButton.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ └── Contents.json │ ├── Checkbox.imageset │ │ ├── Contents.json │ │ └── checkbox.pdf │ ├── Contents.json │ ├── Hide Keyboard.imageset │ │ ├── Contents.json │ │ └── Hide Keyboard.pdf │ ├── Paste.imageset │ │ ├── Contents.json │ │ └── Paste.pdf │ └── X.imageset │ │ ├── Contents.json │ │ └── xmark.circle.fill.regular.large.pdf ├── BarButton.h ├── BarButton.m ├── Base.lproj │ ├── About.storyboard │ ├── LaunchScreen.storyboard │ └── Terminal.storyboard ├── CLI.xcconfig ├── CurrentRoot.h ├── CurrentRoot.m ├── DelayedUITask.h ├── DelayedUITask.m ├── FileProvider │ ├── FileProviderEnumerator.h │ ├── FileProviderEnumerator.m │ ├── FileProviderExtension.h │ ├── FileProviderExtension.m │ ├── FileProviderItem.h │ ├── FileProviderItem.m │ ├── Info.plist │ ├── NSError+ISHErrno.h │ ├── NSError+ISHErrno.m │ └── iSHFileProvider.entitlements ├── FontPickerViewController.h ├── FontPickerViewController.m ├── IOSCalls.m ├── Icons │ ├── 3d.png │ ├── Icons.plist │ ├── aok-dark.png │ ├── aok-jpc.png │ ├── aok-light.png │ ├── circular.png │ ├── colontildehash.png │ ├── dollarblock1.png │ ├── dollarblock2.png │ ├── freeiosterminal.png │ ├── icon.png │ ├── icon1337.png │ ├── idollarhash.png │ ├── ihash1.png │ ├── iinhash.png │ ├── is.png │ ├── ishcolontildehash.png │ ├── metal.png │ ├── notsurewhatthisis.png │ ├── pydann1.png │ ├── pydann2.png │ ├── reworked.png │ ├── rgb.png │ ├── sprite64.png │ └── uninspired.png ├── Info.plist ├── Linux.xcconfig ├── LinuxInterop.c ├── LinuxInterop.h ├── LinuxPTY.c ├── LinuxRoot.c ├── LinuxTTY.c ├── LocationDevice.h ├── LocationDevice.m ├── NSObject+SaneKVO.h ├── NSObject+SaneKVO.m ├── NotLinux.xcconfig ├── PassthroughView.h ├── PassthroughView.m ├── PasteboardDevice.h ├── PasteboardDevice.m ├── PasteboardDeviceLinux.c ├── ProgressReportViewController.h ├── ProgressReportViewController.m ├── Project.xcconfig ├── ProjectDebug.xcconfig ├── ProjectDebugLinux.xcconfig ├── ProjectRelease.xcconfig ├── ProjectReleaseLinux.xcconfig ├── RTCDevice.h ├── RTCDevice.m ├── Roots.h ├── Roots.m ├── Roots.storyboard ├── RootsTableViewController.h ├── RootsTableViewController.m ├── SceneDelegate.h ├── SceneDelegate.m ├── ScrollbarView.h ├── ScrollbarView.m ├── Settings.bundle │ └── Root.plist ├── StaticLib.xcconfig ├── StaticLibLinux.xcconfig ├── Terminal.h ├── Terminal.m ├── TerminalView.h ├── TerminalView.m ├── TerminalViewController.h ├── TerminalViewController.m ├── Theme.h ├── Theme.m ├── ThemeViewController.h ├── ThemeViewController.m ├── ThemesViewController.h ├── ThemesViewController.m ├── UIApplication+OpenURL.h ├── UIApplication+OpenURL.m ├── UITests │ ├── Info.plist │ ├── Screenshots.m │ ├── Screenshots.xctestplan │ └── UITests.m ├── UIViewController+Extras.h ├── UIViewController+Extras.m ├── UpgradeRootViewController.h ├── UpgradeRootViewController.m ├── UserPreferences.h ├── UserPreferences.m ├── ViewController.h ├── XcodeDebug.xcconfig ├── XcodeDefault.xcconfig ├── XcodeRelease.xcconfig ├── gen_apk_repositories.py ├── hook.c ├── hook.h ├── iOS.xcconfig ├── iOSFS.h ├── iOSFS.m ├── iSH.entitlements ├── iSH.xcconfig ├── main.m └── terminal │ ├── term.css │ ├── term.html │ └── term.js ├── debug.h ├── deps ├── aports │ ├── .gitignore │ ├── community │ │ └── x86 │ │ │ └── index.txt │ ├── main │ │ └── x86 │ │ │ └── index.txt │ └── sync-archive.sh ├── clone-linux.sh ├── config.h ├── kconfig-fragment.sh ├── libarchive.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── linux-build.sh ├── linux-sparse.txt ├── linux.config ├── makefilter.py └── meson.build ├── emu ├── cpu.h ├── cpuid.h ├── decode.h ├── float80-test.c ├── float80.c ├── float80.h ├── fpu.c ├── fpu.h ├── interp.c ├── interp │ └── fpu.h ├── interrupt.h ├── memory.c ├── memory.h ├── mmu.h ├── mmx.c ├── modrm.h ├── regid.h ├── tlb.c ├── tlb.h ├── vec.c └── vec.h ├── fastlane ├── Appfile ├── Deliverfile ├── Fastfile ├── Matchfile ├── README.md ├── Snapfile ├── SnapshotHelper.swift └── footer.txt ├── fs ├── adhoc.c ├── dev.c ├── dev.h ├── devices.h ├── dir.c ├── dyndev.c ├── dyndev.h ├── fake-db.c ├── fake-db.h ├── fake-migrate.c ├── fake-rebuild.c ├── fake.c ├── fake.h ├── fd.c ├── fd.h ├── fix_path.h ├── generic.c ├── inode.c ├── inode.h ├── lock.c ├── mem.c ├── mem.h ├── mount.c ├── path.c ├── path.h ├── pipe.c ├── poll.c ├── poll.h ├── proc.c ├── proc.h ├── proc │ ├── entry.c │ ├── ish.c │ ├── ish.h │ ├── net.c │ ├── net.h │ ├── pid.c │ ├── root.c │ ├── sys.c │ └── sys.h ├── pty.c ├── real.c ├── real.h ├── sock.c ├── sock.h ├── sockrestart.c ├── sockrestart.h ├── sqlutil.h ├── stat.c ├── stat.h ├── tmp.c ├── tty-real.c ├── tty.c └── tty.h ├── iSH+LinuxRelease.entitlements ├── iSH-AOK.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── Screenshots.xcscheme │ ├── iSH+Linux.xcscheme │ ├── iSH.xcscheme │ └── ish-cli.xcscheme ├── iSHFileProviderRelease.entitlements ├── iSHRelease.entitlements ├── ish-gdb.gdb ├── jit ├── frame.h ├── gadgets-aarch64 │ ├── bits.S │ ├── control.S │ ├── entry.S │ ├── gadgets.h │ ├── math.S │ ├── math.h │ ├── memory.S │ ├── misc.S │ └── string.S ├── gadgets-generic.h ├── gadgets-x86_64 │ ├── bits.S │ ├── control.S │ ├── entry.S │ ├── gadgets.h │ ├── math.S │ ├── memory.S │ ├── misc.S │ └── string.S ├── gen.c ├── gen.h ├── helpers.c ├── jit.c ├── jit.h └── offsets.c ├── kernel ├── BatteryStatus.h ├── BatteryStatus.m ├── UIDevice.h ├── UIDevice.m ├── calls.c ├── calls.h ├── elf.h ├── epoll.c ├── errno.c ├── errno.h ├── eventfd.c ├── exec.c ├── exit.c ├── fork.c ├── fs.c ├── fs.h ├── fs_info.c ├── futex.c ├── futex.h ├── getset.c ├── group.c ├── hostinfo.m ├── init.c ├── init.h ├── ipc.c ├── log.c ├── log.h ├── misc.c ├── mm.h ├── mmap.c ├── personality.h ├── poll.c ├── ptrace.c ├── ptrace.h ├── random.c ├── random.h ├── resource.c ├── resource.h ├── signal.c ├── signal.h ├── task.c ├── task.h ├── time.c ├── time.h ├── tls.c ├── uname.c ├── user.c ├── vdso.c └── vdso.h ├── linux ├── fakefs.c └── main.c ├── main.c ├── meson.build ├── meson_options.txt ├── misc.h ├── platform ├── darwin.c ├── linux.c └── platform.h ├── root.tar.gz ├── subprojects └── .gitignore ├── tests ├── .gitignore ├── e2e │ ├── e2e.bash │ ├── fpu │ │ ├── expected.txt │ │ ├── test.sh │ │ └── test_fpu.c │ ├── hello │ │ ├── expected.txt │ │ ├── test.sh │ │ ├── test_c.c │ │ ├── test_python2.py │ │ └── test_python3.py │ ├── qemu │ │ ├── expected.txt │ │ ├── qemu-test-muldiv.h │ │ ├── qemu-test-shift.h │ │ ├── qemu-test.c │ │ ├── qemu-test.h │ │ └── test.sh │ ├── shell │ │ ├── expected.txt │ │ └── test.sh │ └── sse2 │ │ ├── expected.txt │ │ ├── movaps.c │ │ ├── movss.c │ │ ├── paddq.c │ │ ├── psllq.c │ │ ├── psrlq.c │ │ ├── test.sh │ │ └── xorps.c └── manual │ ├── cat.c │ ├── fibbonaci.c │ ├── forkexec.c │ ├── get-busybox.sh │ ├── getdents.c │ ├── hello-clib.c │ ├── hello.c │ ├── looper.c │ ├── meson.build │ ├── modify.c │ ├── signal.c │ ├── stat.c │ └── thread.c ├── tools ├── fakefs.c ├── fakefs.h ├── fakefsify.c ├── meson.build ├── ptraceomatic-config.h ├── ptraceomatic-gdb.gdb ├── ptraceomatic.c ├── ptutil.c ├── ptutil.h ├── staticdefine.h ├── staticdefine.sh ├── transplant.h ├── undefined-flags.c ├── undefined-flags.h ├── unicornomatic.c ├── vdso-dump.c ├── vdso-transplant-main.c └── vdso-transplant.c ├── util ├── bits.h ├── fifo.c ├── fifo.h ├── list.h ├── refcount.h ├── ro_locks.c ├── ro_locks.h ├── rw_locks.c ├── rw_locks.h ├── sync.c ├── sync.h ├── timer.c └── timer.h ├── vdso ├── check-cc.sh ├── meson.build ├── note.S ├── vdso.S ├── vdso.c └── vdso.lds ├── xX_main_Xx.h ├── xcode-meson.sh └── xcode-ninja.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/autolabel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/.github/workflows/autolabel.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/.github/workflows/deploy-site.yml -------------------------------------------------------------------------------- /.github/workflows/update-alpine-repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/.github/workflows/update-alpine-repo.yml -------------------------------------------------------------------------------- /.github/workflows/upload-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/.github/workflows/upload-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.IOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/LICENSE.IOS -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/README.md -------------------------------------------------------------------------------- /README_KO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/README_KO.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/README_ZH.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/AboutAppearanceViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AboutAppearanceViewController.h -------------------------------------------------------------------------------- /app/AboutAppearanceViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AboutAppearanceViewController.m -------------------------------------------------------------------------------- /app/AboutExternalKeyboardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AboutExternalKeyboardViewController.h -------------------------------------------------------------------------------- /app/AboutExternalKeyboardViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AboutExternalKeyboardViewController.m -------------------------------------------------------------------------------- /app/AboutNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AboutNavigationController.h -------------------------------------------------------------------------------- /app/AboutNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AboutNavigationController.m -------------------------------------------------------------------------------- /app/AboutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AboutViewController.h -------------------------------------------------------------------------------- /app/AboutViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AboutViewController.m -------------------------------------------------------------------------------- /app/AccessibilityFixes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AccessibilityFixes.m -------------------------------------------------------------------------------- /app/AltIconViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AltIconViewController.h -------------------------------------------------------------------------------- /app/AltIconViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AltIconViewController.m -------------------------------------------------------------------------------- /app/App.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/App.xcconfig -------------------------------------------------------------------------------- /app/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AppDelegate.h -------------------------------------------------------------------------------- /app/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AppDelegate.m -------------------------------------------------------------------------------- /app/AppGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AppGroup.h -------------------------------------------------------------------------------- /app/AppGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AppGroup.m -------------------------------------------------------------------------------- /app/AppLib.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/AppLib.xcconfig -------------------------------------------------------------------------------- /app/AppStore.xcconfig: -------------------------------------------------------------------------------- 1 | ENABLE_APK_ODRS = YES 2 | -------------------------------------------------------------------------------- /app/ArrowBarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ArrowBarButton.h -------------------------------------------------------------------------------- /app/ArrowBarButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ArrowBarButton.m -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /app/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/Assets.xcassets/Checkbox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/Checkbox.imageset/Contents.json -------------------------------------------------------------------------------- /app/Assets.xcassets/Checkbox.imageset/checkbox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/Checkbox.imageset/checkbox.pdf -------------------------------------------------------------------------------- /app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/Assets.xcassets/Hide Keyboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/Hide Keyboard.imageset/Contents.json -------------------------------------------------------------------------------- /app/Assets.xcassets/Hide Keyboard.imageset/Hide Keyboard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/Hide Keyboard.imageset/Hide Keyboard.pdf -------------------------------------------------------------------------------- /app/Assets.xcassets/Paste.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/Paste.imageset/Contents.json -------------------------------------------------------------------------------- /app/Assets.xcassets/Paste.imageset/Paste.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/Paste.imageset/Paste.pdf -------------------------------------------------------------------------------- /app/Assets.xcassets/X.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/X.imageset/Contents.json -------------------------------------------------------------------------------- /app/Assets.xcassets/X.imageset/xmark.circle.fill.regular.large.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Assets.xcassets/X.imageset/xmark.circle.fill.regular.large.pdf -------------------------------------------------------------------------------- /app/BarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/BarButton.h -------------------------------------------------------------------------------- /app/BarButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/BarButton.m -------------------------------------------------------------------------------- /app/Base.lproj/About.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Base.lproj/About.storyboard -------------------------------------------------------------------------------- /app/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /app/Base.lproj/Terminal.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Base.lproj/Terminal.storyboard -------------------------------------------------------------------------------- /app/CLI.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/CLI.xcconfig -------------------------------------------------------------------------------- /app/CurrentRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/CurrentRoot.h -------------------------------------------------------------------------------- /app/CurrentRoot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/CurrentRoot.m -------------------------------------------------------------------------------- /app/DelayedUITask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/DelayedUITask.h -------------------------------------------------------------------------------- /app/DelayedUITask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/DelayedUITask.m -------------------------------------------------------------------------------- /app/FileProvider/FileProviderEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FileProvider/FileProviderEnumerator.h -------------------------------------------------------------------------------- /app/FileProvider/FileProviderEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FileProvider/FileProviderEnumerator.m -------------------------------------------------------------------------------- /app/FileProvider/FileProviderExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FileProvider/FileProviderExtension.h -------------------------------------------------------------------------------- /app/FileProvider/FileProviderExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FileProvider/FileProviderExtension.m -------------------------------------------------------------------------------- /app/FileProvider/FileProviderItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FileProvider/FileProviderItem.h -------------------------------------------------------------------------------- /app/FileProvider/FileProviderItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FileProvider/FileProviderItem.m -------------------------------------------------------------------------------- /app/FileProvider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FileProvider/Info.plist -------------------------------------------------------------------------------- /app/FileProvider/NSError+ISHErrno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FileProvider/NSError+ISHErrno.h -------------------------------------------------------------------------------- /app/FileProvider/NSError+ISHErrno.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FileProvider/NSError+ISHErrno.m -------------------------------------------------------------------------------- /app/FileProvider/iSHFileProvider.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FileProvider/iSHFileProvider.entitlements -------------------------------------------------------------------------------- /app/FontPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FontPickerViewController.h -------------------------------------------------------------------------------- /app/FontPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/FontPickerViewController.m -------------------------------------------------------------------------------- /app/IOSCalls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/IOSCalls.m -------------------------------------------------------------------------------- /app/Icons/3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/3d.png -------------------------------------------------------------------------------- /app/Icons/Icons.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/Icons.plist -------------------------------------------------------------------------------- /app/Icons/aok-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/aok-dark.png -------------------------------------------------------------------------------- /app/Icons/aok-jpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/aok-jpc.png -------------------------------------------------------------------------------- /app/Icons/aok-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/aok-light.png -------------------------------------------------------------------------------- /app/Icons/circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/circular.png -------------------------------------------------------------------------------- /app/Icons/colontildehash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/colontildehash.png -------------------------------------------------------------------------------- /app/Icons/dollarblock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/dollarblock1.png -------------------------------------------------------------------------------- /app/Icons/dollarblock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/dollarblock2.png -------------------------------------------------------------------------------- /app/Icons/freeiosterminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/freeiosterminal.png -------------------------------------------------------------------------------- /app/Icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/icon.png -------------------------------------------------------------------------------- /app/Icons/icon1337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/icon1337.png -------------------------------------------------------------------------------- /app/Icons/idollarhash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/idollarhash.png -------------------------------------------------------------------------------- /app/Icons/ihash1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/ihash1.png -------------------------------------------------------------------------------- /app/Icons/iinhash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/iinhash.png -------------------------------------------------------------------------------- /app/Icons/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/is.png -------------------------------------------------------------------------------- /app/Icons/ishcolontildehash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/ishcolontildehash.png -------------------------------------------------------------------------------- /app/Icons/metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/metal.png -------------------------------------------------------------------------------- /app/Icons/notsurewhatthisis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/notsurewhatthisis.png -------------------------------------------------------------------------------- /app/Icons/pydann1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/pydann1.png -------------------------------------------------------------------------------- /app/Icons/pydann2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/pydann2.png -------------------------------------------------------------------------------- /app/Icons/reworked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/reworked.png -------------------------------------------------------------------------------- /app/Icons/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/rgb.png -------------------------------------------------------------------------------- /app/Icons/sprite64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/sprite64.png -------------------------------------------------------------------------------- /app/Icons/uninspired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Icons/uninspired.png -------------------------------------------------------------------------------- /app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Info.plist -------------------------------------------------------------------------------- /app/Linux.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Linux.xcconfig -------------------------------------------------------------------------------- /app/LinuxInterop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/LinuxInterop.c -------------------------------------------------------------------------------- /app/LinuxInterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/LinuxInterop.h -------------------------------------------------------------------------------- /app/LinuxPTY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/LinuxPTY.c -------------------------------------------------------------------------------- /app/LinuxRoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/LinuxRoot.c -------------------------------------------------------------------------------- /app/LinuxTTY.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/LinuxTTY.c -------------------------------------------------------------------------------- /app/LocationDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/LocationDevice.h -------------------------------------------------------------------------------- /app/LocationDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/LocationDevice.m -------------------------------------------------------------------------------- /app/NSObject+SaneKVO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/NSObject+SaneKVO.h -------------------------------------------------------------------------------- /app/NSObject+SaneKVO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/NSObject+SaneKVO.m -------------------------------------------------------------------------------- /app/NotLinux.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/NotLinux.xcconfig -------------------------------------------------------------------------------- /app/PassthroughView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/PassthroughView.h -------------------------------------------------------------------------------- /app/PassthroughView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/PassthroughView.m -------------------------------------------------------------------------------- /app/PasteboardDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/PasteboardDevice.h -------------------------------------------------------------------------------- /app/PasteboardDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/PasteboardDevice.m -------------------------------------------------------------------------------- /app/PasteboardDeviceLinux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/PasteboardDeviceLinux.c -------------------------------------------------------------------------------- /app/ProgressReportViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ProgressReportViewController.h -------------------------------------------------------------------------------- /app/ProgressReportViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ProgressReportViewController.m -------------------------------------------------------------------------------- /app/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Project.xcconfig -------------------------------------------------------------------------------- /app/ProjectDebug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ProjectDebug.xcconfig -------------------------------------------------------------------------------- /app/ProjectDebugLinux.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ProjectDebugLinux.xcconfig -------------------------------------------------------------------------------- /app/ProjectRelease.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ProjectRelease.xcconfig -------------------------------------------------------------------------------- /app/ProjectReleaseLinux.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ProjectReleaseLinux.xcconfig -------------------------------------------------------------------------------- /app/RTCDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/RTCDevice.h -------------------------------------------------------------------------------- /app/RTCDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/RTCDevice.m -------------------------------------------------------------------------------- /app/Roots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Roots.h -------------------------------------------------------------------------------- /app/Roots.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Roots.m -------------------------------------------------------------------------------- /app/Roots.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Roots.storyboard -------------------------------------------------------------------------------- /app/RootsTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/RootsTableViewController.h -------------------------------------------------------------------------------- /app/RootsTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/RootsTableViewController.m -------------------------------------------------------------------------------- /app/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/SceneDelegate.h -------------------------------------------------------------------------------- /app/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/SceneDelegate.m -------------------------------------------------------------------------------- /app/ScrollbarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ScrollbarView.h -------------------------------------------------------------------------------- /app/ScrollbarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ScrollbarView.m -------------------------------------------------------------------------------- /app/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /app/StaticLib.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/StaticLib.xcconfig -------------------------------------------------------------------------------- /app/StaticLibLinux.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/StaticLibLinux.xcconfig -------------------------------------------------------------------------------- /app/Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Terminal.h -------------------------------------------------------------------------------- /app/Terminal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Terminal.m -------------------------------------------------------------------------------- /app/TerminalView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/TerminalView.h -------------------------------------------------------------------------------- /app/TerminalView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/TerminalView.m -------------------------------------------------------------------------------- /app/TerminalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/TerminalViewController.h -------------------------------------------------------------------------------- /app/TerminalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/TerminalViewController.m -------------------------------------------------------------------------------- /app/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Theme.h -------------------------------------------------------------------------------- /app/Theme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/Theme.m -------------------------------------------------------------------------------- /app/ThemeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ThemeViewController.h -------------------------------------------------------------------------------- /app/ThemeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ThemeViewController.m -------------------------------------------------------------------------------- /app/ThemesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ThemesViewController.h -------------------------------------------------------------------------------- /app/ThemesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ThemesViewController.m -------------------------------------------------------------------------------- /app/UIApplication+OpenURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UIApplication+OpenURL.h -------------------------------------------------------------------------------- /app/UIApplication+OpenURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UIApplication+OpenURL.m -------------------------------------------------------------------------------- /app/UITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UITests/Info.plist -------------------------------------------------------------------------------- /app/UITests/Screenshots.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UITests/Screenshots.m -------------------------------------------------------------------------------- /app/UITests/Screenshots.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UITests/Screenshots.xctestplan -------------------------------------------------------------------------------- /app/UITests/UITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UITests/UITests.m -------------------------------------------------------------------------------- /app/UIViewController+Extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UIViewController+Extras.h -------------------------------------------------------------------------------- /app/UIViewController+Extras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UIViewController+Extras.m -------------------------------------------------------------------------------- /app/UpgradeRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UpgradeRootViewController.h -------------------------------------------------------------------------------- /app/UpgradeRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UpgradeRootViewController.m -------------------------------------------------------------------------------- /app/UserPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UserPreferences.h -------------------------------------------------------------------------------- /app/UserPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/UserPreferences.m -------------------------------------------------------------------------------- /app/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/ViewController.h -------------------------------------------------------------------------------- /app/XcodeDebug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/XcodeDebug.xcconfig -------------------------------------------------------------------------------- /app/XcodeDefault.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/XcodeDefault.xcconfig -------------------------------------------------------------------------------- /app/XcodeRelease.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/XcodeRelease.xcconfig -------------------------------------------------------------------------------- /app/gen_apk_repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/gen_apk_repositories.py -------------------------------------------------------------------------------- /app/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/hook.c -------------------------------------------------------------------------------- /app/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/hook.h -------------------------------------------------------------------------------- /app/iOS.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/iOS.xcconfig -------------------------------------------------------------------------------- /app/iOSFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/iOSFS.h -------------------------------------------------------------------------------- /app/iOSFS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/iOSFS.m -------------------------------------------------------------------------------- /app/iSH.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/iSH.entitlements -------------------------------------------------------------------------------- /app/iSH.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/iSH.xcconfig -------------------------------------------------------------------------------- /app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/main.m -------------------------------------------------------------------------------- /app/terminal/term.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/terminal/term.css -------------------------------------------------------------------------------- /app/terminal/term.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/terminal/term.html -------------------------------------------------------------------------------- /app/terminal/term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/app/terminal/term.js -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/debug.h -------------------------------------------------------------------------------- /deps/aports/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/aports/.gitignore -------------------------------------------------------------------------------- /deps/aports/community/x86/index.txt: -------------------------------------------------------------------------------- 1 | APKINDEX-v3.14-2023-04-22.tar.gz 2 | -------------------------------------------------------------------------------- /deps/aports/main/x86/index.txt: -------------------------------------------------------------------------------- 1 | APKINDEX-v3.14-2023-04-22.tar.gz 2 | -------------------------------------------------------------------------------- /deps/aports/sync-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/aports/sync-archive.sh -------------------------------------------------------------------------------- /deps/clone-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/clone-linux.sh -------------------------------------------------------------------------------- /deps/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/config.h -------------------------------------------------------------------------------- /deps/kconfig-fragment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/kconfig-fragment.sh -------------------------------------------------------------------------------- /deps/libarchive.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/libarchive.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /deps/libarchive.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/libarchive.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /deps/libarchive.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/libarchive.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /deps/linux-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/linux-build.sh -------------------------------------------------------------------------------- /deps/linux-sparse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/linux-sparse.txt -------------------------------------------------------------------------------- /deps/linux.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/linux.config -------------------------------------------------------------------------------- /deps/makefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/makefilter.py -------------------------------------------------------------------------------- /deps/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/deps/meson.build -------------------------------------------------------------------------------- /emu/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/cpu.h -------------------------------------------------------------------------------- /emu/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/cpuid.h -------------------------------------------------------------------------------- /emu/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/decode.h -------------------------------------------------------------------------------- /emu/float80-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/float80-test.c -------------------------------------------------------------------------------- /emu/float80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/float80.c -------------------------------------------------------------------------------- /emu/float80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/float80.h -------------------------------------------------------------------------------- /emu/fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/fpu.c -------------------------------------------------------------------------------- /emu/fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/fpu.h -------------------------------------------------------------------------------- /emu/interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/interp.c -------------------------------------------------------------------------------- /emu/interp/fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/interp/fpu.h -------------------------------------------------------------------------------- /emu/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/interrupt.h -------------------------------------------------------------------------------- /emu/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/memory.c -------------------------------------------------------------------------------- /emu/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/memory.h -------------------------------------------------------------------------------- /emu/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/mmu.h -------------------------------------------------------------------------------- /emu/mmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/mmx.c -------------------------------------------------------------------------------- /emu/modrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/modrm.h -------------------------------------------------------------------------------- /emu/regid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/regid.h -------------------------------------------------------------------------------- /emu/tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/tlb.c -------------------------------------------------------------------------------- /emu/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/tlb.h -------------------------------------------------------------------------------- /emu/vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/vec.c -------------------------------------------------------------------------------- /emu/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/emu/vec.h -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fastlane/Deliverfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fastlane/Snapfile -------------------------------------------------------------------------------- /fastlane/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fastlane/SnapshotHelper.swift -------------------------------------------------------------------------------- /fastlane/footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fastlane/footer.txt -------------------------------------------------------------------------------- /fs/adhoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/adhoc.c -------------------------------------------------------------------------------- /fs/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/dev.c -------------------------------------------------------------------------------- /fs/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/dev.h -------------------------------------------------------------------------------- /fs/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/devices.h -------------------------------------------------------------------------------- /fs/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/dir.c -------------------------------------------------------------------------------- /fs/dyndev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/dyndev.c -------------------------------------------------------------------------------- /fs/dyndev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/dyndev.h -------------------------------------------------------------------------------- /fs/fake-db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/fake-db.c -------------------------------------------------------------------------------- /fs/fake-db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/fake-db.h -------------------------------------------------------------------------------- /fs/fake-migrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/fake-migrate.c -------------------------------------------------------------------------------- /fs/fake-rebuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/fake-rebuild.c -------------------------------------------------------------------------------- /fs/fake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/fake.c -------------------------------------------------------------------------------- /fs/fake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/fake.h -------------------------------------------------------------------------------- /fs/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/fd.c -------------------------------------------------------------------------------- /fs/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/fd.h -------------------------------------------------------------------------------- /fs/fix_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/fix_path.h -------------------------------------------------------------------------------- /fs/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/generic.c -------------------------------------------------------------------------------- /fs/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/inode.c -------------------------------------------------------------------------------- /fs/inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/inode.h -------------------------------------------------------------------------------- /fs/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/lock.c -------------------------------------------------------------------------------- /fs/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/mem.c -------------------------------------------------------------------------------- /fs/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/mem.h -------------------------------------------------------------------------------- /fs/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/mount.c -------------------------------------------------------------------------------- /fs/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/path.c -------------------------------------------------------------------------------- /fs/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/path.h -------------------------------------------------------------------------------- /fs/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/pipe.c -------------------------------------------------------------------------------- /fs/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/poll.c -------------------------------------------------------------------------------- /fs/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/poll.h -------------------------------------------------------------------------------- /fs/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/proc.c -------------------------------------------------------------------------------- /fs/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/proc.h -------------------------------------------------------------------------------- /fs/proc/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/proc/entry.c -------------------------------------------------------------------------------- /fs/proc/ish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/proc/ish.c -------------------------------------------------------------------------------- /fs/proc/ish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/proc/ish.h -------------------------------------------------------------------------------- /fs/proc/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/proc/net.c -------------------------------------------------------------------------------- /fs/proc/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/proc/net.h -------------------------------------------------------------------------------- /fs/proc/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/proc/pid.c -------------------------------------------------------------------------------- /fs/proc/root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/proc/root.c -------------------------------------------------------------------------------- /fs/proc/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/proc/sys.c -------------------------------------------------------------------------------- /fs/proc/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/proc/sys.h -------------------------------------------------------------------------------- /fs/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/pty.c -------------------------------------------------------------------------------- /fs/real.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/real.c -------------------------------------------------------------------------------- /fs/real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/real.h -------------------------------------------------------------------------------- /fs/sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/sock.c -------------------------------------------------------------------------------- /fs/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/sock.h -------------------------------------------------------------------------------- /fs/sockrestart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/sockrestart.c -------------------------------------------------------------------------------- /fs/sockrestart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/sockrestart.h -------------------------------------------------------------------------------- /fs/sqlutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/sqlutil.h -------------------------------------------------------------------------------- /fs/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/stat.c -------------------------------------------------------------------------------- /fs/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/stat.h -------------------------------------------------------------------------------- /fs/tmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/tmp.c -------------------------------------------------------------------------------- /fs/tty-real.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/tty-real.c -------------------------------------------------------------------------------- /fs/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/tty.c -------------------------------------------------------------------------------- /fs/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/fs/tty.h -------------------------------------------------------------------------------- /iSH+LinuxRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSH+LinuxRelease.entitlements -------------------------------------------------------------------------------- /iSH-AOK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSH-AOK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iSH-AOK.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSH-AOK.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iSH-AOK.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSH-AOK.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iSH-AOK.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSH-AOK.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /iSH-AOK.xcodeproj/xcshareddata/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSH-AOK.xcodeproj/xcshareddata/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /iSH-AOK.xcodeproj/xcshareddata/xcschemes/Screenshots.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSH-AOK.xcodeproj/xcshareddata/xcschemes/Screenshots.xcscheme -------------------------------------------------------------------------------- /iSH-AOK.xcodeproj/xcshareddata/xcschemes/iSH+Linux.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSH-AOK.xcodeproj/xcshareddata/xcschemes/iSH+Linux.xcscheme -------------------------------------------------------------------------------- /iSH-AOK.xcodeproj/xcshareddata/xcschemes/iSH.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSH-AOK.xcodeproj/xcshareddata/xcschemes/iSH.xcscheme -------------------------------------------------------------------------------- /iSH-AOK.xcodeproj/xcshareddata/xcschemes/ish-cli.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSH-AOK.xcodeproj/xcshareddata/xcschemes/ish-cli.xcscheme -------------------------------------------------------------------------------- /iSHFileProviderRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSHFileProviderRelease.entitlements -------------------------------------------------------------------------------- /iSHRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/iSHRelease.entitlements -------------------------------------------------------------------------------- /ish-gdb.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/ish-gdb.gdb -------------------------------------------------------------------------------- /jit/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/frame.h -------------------------------------------------------------------------------- /jit/gadgets-aarch64/bits.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-aarch64/bits.S -------------------------------------------------------------------------------- /jit/gadgets-aarch64/control.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-aarch64/control.S -------------------------------------------------------------------------------- /jit/gadgets-aarch64/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-aarch64/entry.S -------------------------------------------------------------------------------- /jit/gadgets-aarch64/gadgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-aarch64/gadgets.h -------------------------------------------------------------------------------- /jit/gadgets-aarch64/math.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-aarch64/math.S -------------------------------------------------------------------------------- /jit/gadgets-aarch64/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-aarch64/math.h -------------------------------------------------------------------------------- /jit/gadgets-aarch64/memory.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-aarch64/memory.S -------------------------------------------------------------------------------- /jit/gadgets-aarch64/misc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-aarch64/misc.S -------------------------------------------------------------------------------- /jit/gadgets-aarch64/string.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-aarch64/string.S -------------------------------------------------------------------------------- /jit/gadgets-generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-generic.h -------------------------------------------------------------------------------- /jit/gadgets-x86_64/bits.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-x86_64/bits.S -------------------------------------------------------------------------------- /jit/gadgets-x86_64/control.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-x86_64/control.S -------------------------------------------------------------------------------- /jit/gadgets-x86_64/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-x86_64/entry.S -------------------------------------------------------------------------------- /jit/gadgets-x86_64/gadgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-x86_64/gadgets.h -------------------------------------------------------------------------------- /jit/gadgets-x86_64/math.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-x86_64/math.S -------------------------------------------------------------------------------- /jit/gadgets-x86_64/memory.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-x86_64/memory.S -------------------------------------------------------------------------------- /jit/gadgets-x86_64/misc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-x86_64/misc.S -------------------------------------------------------------------------------- /jit/gadgets-x86_64/string.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gadgets-x86_64/string.S -------------------------------------------------------------------------------- /jit/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gen.c -------------------------------------------------------------------------------- /jit/gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/gen.h -------------------------------------------------------------------------------- /jit/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/helpers.c -------------------------------------------------------------------------------- /jit/jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/jit.c -------------------------------------------------------------------------------- /jit/jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/jit.h -------------------------------------------------------------------------------- /jit/offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/jit/offsets.c -------------------------------------------------------------------------------- /kernel/BatteryStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/BatteryStatus.h -------------------------------------------------------------------------------- /kernel/BatteryStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/BatteryStatus.m -------------------------------------------------------------------------------- /kernel/UIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/UIDevice.h -------------------------------------------------------------------------------- /kernel/UIDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/UIDevice.m -------------------------------------------------------------------------------- /kernel/calls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/calls.c -------------------------------------------------------------------------------- /kernel/calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/calls.h -------------------------------------------------------------------------------- /kernel/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/elf.h -------------------------------------------------------------------------------- /kernel/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/epoll.c -------------------------------------------------------------------------------- /kernel/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/errno.c -------------------------------------------------------------------------------- /kernel/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/errno.h -------------------------------------------------------------------------------- /kernel/eventfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/eventfd.c -------------------------------------------------------------------------------- /kernel/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/exec.c -------------------------------------------------------------------------------- /kernel/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/exit.c -------------------------------------------------------------------------------- /kernel/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/fork.c -------------------------------------------------------------------------------- /kernel/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/fs.c -------------------------------------------------------------------------------- /kernel/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/fs.h -------------------------------------------------------------------------------- /kernel/fs_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/fs_info.c -------------------------------------------------------------------------------- /kernel/futex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/futex.c -------------------------------------------------------------------------------- /kernel/futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/futex.h -------------------------------------------------------------------------------- /kernel/getset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/getset.c -------------------------------------------------------------------------------- /kernel/group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/group.c -------------------------------------------------------------------------------- /kernel/hostinfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/hostinfo.m -------------------------------------------------------------------------------- /kernel/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/init.c -------------------------------------------------------------------------------- /kernel/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/init.h -------------------------------------------------------------------------------- /kernel/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/ipc.c -------------------------------------------------------------------------------- /kernel/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/log.c -------------------------------------------------------------------------------- /kernel/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/log.h -------------------------------------------------------------------------------- /kernel/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/misc.c -------------------------------------------------------------------------------- /kernel/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/mm.h -------------------------------------------------------------------------------- /kernel/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/mmap.c -------------------------------------------------------------------------------- /kernel/personality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/personality.h -------------------------------------------------------------------------------- /kernel/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/poll.c -------------------------------------------------------------------------------- /kernel/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/ptrace.c -------------------------------------------------------------------------------- /kernel/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/ptrace.h -------------------------------------------------------------------------------- /kernel/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/random.c -------------------------------------------------------------------------------- /kernel/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/random.h -------------------------------------------------------------------------------- /kernel/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/resource.c -------------------------------------------------------------------------------- /kernel/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/resource.h -------------------------------------------------------------------------------- /kernel/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/signal.c -------------------------------------------------------------------------------- /kernel/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/signal.h -------------------------------------------------------------------------------- /kernel/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/task.c -------------------------------------------------------------------------------- /kernel/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/task.h -------------------------------------------------------------------------------- /kernel/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/time.c -------------------------------------------------------------------------------- /kernel/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/time.h -------------------------------------------------------------------------------- /kernel/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/tls.c -------------------------------------------------------------------------------- /kernel/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/uname.c -------------------------------------------------------------------------------- /kernel/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/user.c -------------------------------------------------------------------------------- /kernel/vdso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/vdso.c -------------------------------------------------------------------------------- /kernel/vdso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/kernel/vdso.h -------------------------------------------------------------------------------- /linux/fakefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/linux/fakefs.c -------------------------------------------------------------------------------- /linux/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/linux/main.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/main.c -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/meson_options.txt -------------------------------------------------------------------------------- /misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/misc.h -------------------------------------------------------------------------------- /platform/darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/platform/darwin.c -------------------------------------------------------------------------------- /platform/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/platform/linux.c -------------------------------------------------------------------------------- /platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/platform/platform.h -------------------------------------------------------------------------------- /root.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/root.tar.gz -------------------------------------------------------------------------------- /subprojects/.gitignore: -------------------------------------------------------------------------------- 1 | softfloat 2 | gdbm-1.14.1 3 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | busybox-*/ 2 | -------------------------------------------------------------------------------- /tests/e2e/e2e.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/e2e.bash -------------------------------------------------------------------------------- /tests/e2e/fpu/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/fpu/expected.txt -------------------------------------------------------------------------------- /tests/e2e/fpu/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/fpu/test.sh -------------------------------------------------------------------------------- /tests/e2e/fpu/test_fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/fpu/test_fpu.c -------------------------------------------------------------------------------- /tests/e2e/hello/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/hello/expected.txt -------------------------------------------------------------------------------- /tests/e2e/hello/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/hello/test.sh -------------------------------------------------------------------------------- /tests/e2e/hello/test_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/hello/test_c.c -------------------------------------------------------------------------------- /tests/e2e/hello/test_python2.py: -------------------------------------------------------------------------------- 1 | print 'Hello, Python 2!' 2 | -------------------------------------------------------------------------------- /tests/e2e/hello/test_python3.py: -------------------------------------------------------------------------------- 1 | print('Hello, Python 3!') 2 | -------------------------------------------------------------------------------- /tests/e2e/qemu/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/qemu/expected.txt -------------------------------------------------------------------------------- /tests/e2e/qemu/qemu-test-muldiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/qemu/qemu-test-muldiv.h -------------------------------------------------------------------------------- /tests/e2e/qemu/qemu-test-shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/qemu/qemu-test-shift.h -------------------------------------------------------------------------------- /tests/e2e/qemu/qemu-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/qemu/qemu-test.c -------------------------------------------------------------------------------- /tests/e2e/qemu/qemu-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/qemu/qemu-test.h -------------------------------------------------------------------------------- /tests/e2e/qemu/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/qemu/test.sh -------------------------------------------------------------------------------- /tests/e2e/shell/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/shell/expected.txt -------------------------------------------------------------------------------- /tests/e2e/shell/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/shell/test.sh -------------------------------------------------------------------------------- /tests/e2e/sse2/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/sse2/expected.txt -------------------------------------------------------------------------------- /tests/e2e/sse2/movaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/sse2/movaps.c -------------------------------------------------------------------------------- /tests/e2e/sse2/movss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/sse2/movss.c -------------------------------------------------------------------------------- /tests/e2e/sse2/paddq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/sse2/paddq.c -------------------------------------------------------------------------------- /tests/e2e/sse2/psllq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/sse2/psllq.c -------------------------------------------------------------------------------- /tests/e2e/sse2/psrlq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/sse2/psrlq.c -------------------------------------------------------------------------------- /tests/e2e/sse2/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/sse2/test.sh -------------------------------------------------------------------------------- /tests/e2e/sse2/xorps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/e2e/sse2/xorps.c -------------------------------------------------------------------------------- /tests/manual/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/cat.c -------------------------------------------------------------------------------- /tests/manual/fibbonaci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/fibbonaci.c -------------------------------------------------------------------------------- /tests/manual/forkexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/forkexec.c -------------------------------------------------------------------------------- /tests/manual/get-busybox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/get-busybox.sh -------------------------------------------------------------------------------- /tests/manual/getdents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/getdents.c -------------------------------------------------------------------------------- /tests/manual/hello-clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/hello-clib.c -------------------------------------------------------------------------------- /tests/manual/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/hello.c -------------------------------------------------------------------------------- /tests/manual/looper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/looper.c -------------------------------------------------------------------------------- /tests/manual/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/meson.build -------------------------------------------------------------------------------- /tests/manual/modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/modify.c -------------------------------------------------------------------------------- /tests/manual/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/signal.c -------------------------------------------------------------------------------- /tests/manual/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/stat.c -------------------------------------------------------------------------------- /tests/manual/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tests/manual/thread.c -------------------------------------------------------------------------------- /tools/fakefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/fakefs.c -------------------------------------------------------------------------------- /tools/fakefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/fakefs.h -------------------------------------------------------------------------------- /tools/fakefsify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/fakefsify.c -------------------------------------------------------------------------------- /tools/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/meson.build -------------------------------------------------------------------------------- /tools/ptraceomatic-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/ptraceomatic-config.h -------------------------------------------------------------------------------- /tools/ptraceomatic-gdb.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/ptraceomatic-gdb.gdb -------------------------------------------------------------------------------- /tools/ptraceomatic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/ptraceomatic.c -------------------------------------------------------------------------------- /tools/ptutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/ptutil.c -------------------------------------------------------------------------------- /tools/ptutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/ptutil.h -------------------------------------------------------------------------------- /tools/staticdefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/staticdefine.h -------------------------------------------------------------------------------- /tools/staticdefine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/staticdefine.sh -------------------------------------------------------------------------------- /tools/transplant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/transplant.h -------------------------------------------------------------------------------- /tools/undefined-flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/undefined-flags.c -------------------------------------------------------------------------------- /tools/undefined-flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/undefined-flags.h -------------------------------------------------------------------------------- /tools/unicornomatic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/unicornomatic.c -------------------------------------------------------------------------------- /tools/vdso-dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/vdso-dump.c -------------------------------------------------------------------------------- /tools/vdso-transplant-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/vdso-transplant-main.c -------------------------------------------------------------------------------- /tools/vdso-transplant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/tools/vdso-transplant.c -------------------------------------------------------------------------------- /util/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/bits.h -------------------------------------------------------------------------------- /util/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/fifo.c -------------------------------------------------------------------------------- /util/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/fifo.h -------------------------------------------------------------------------------- /util/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/list.h -------------------------------------------------------------------------------- /util/refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/refcount.h -------------------------------------------------------------------------------- /util/ro_locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/ro_locks.c -------------------------------------------------------------------------------- /util/ro_locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/ro_locks.h -------------------------------------------------------------------------------- /util/rw_locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/rw_locks.c -------------------------------------------------------------------------------- /util/rw_locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/rw_locks.h -------------------------------------------------------------------------------- /util/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/sync.c -------------------------------------------------------------------------------- /util/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/sync.h -------------------------------------------------------------------------------- /util/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/timer.c -------------------------------------------------------------------------------- /util/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/util/timer.h -------------------------------------------------------------------------------- /vdso/check-cc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/vdso/check-cc.sh -------------------------------------------------------------------------------- /vdso/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/vdso/meson.build -------------------------------------------------------------------------------- /vdso/note.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/vdso/note.S -------------------------------------------------------------------------------- /vdso/vdso.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/vdso/vdso.S -------------------------------------------------------------------------------- /vdso/vdso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/vdso/vdso.c -------------------------------------------------------------------------------- /vdso/vdso.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/vdso/vdso.lds -------------------------------------------------------------------------------- /xX_main_Xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/xX_main_Xx.h -------------------------------------------------------------------------------- /xcode-meson.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/xcode-meson.sh -------------------------------------------------------------------------------- /xcode-ninja.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emkey1/ish-AOK/HEAD/xcode-ninja.sh --------------------------------------------------------------------------------