From 08e3fd0ea8e5485ef269157dbe9dee6a35c9325d Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Wed, 12 Jul 2017 01:40:15 -0700 Subject: [PATCH] Update readme --- README.md | 13 ++++++++++++- driver/README.md | 14 -------------- 2 files changed, 12 insertions(+), 15 deletions(-) delete mode 100644 driver/README.md diff --git a/README.md b/README.md index 2e388dd..ef605f8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Software -`driver` contains a kernel module. Add it to taihen's `config.txt` KERNEL section. +`driver` contains a kernel module. Add it to taihen's `config.txt` KERNEL section. You can download a precompiled `.skprx` from the [Releases](https://github.com/xyzz/gamecard-microsd/releases) section. Your microSD card must have no partition table. exFAT filesystem should be written directly to the device. On linux, do: @@ -12,6 +12,17 @@ mkfs.exfat /dev/sdx I'm not sure how to do the same on windows. After that, the card still works on both linux and windows, however other devices might have some problems. +### Compiling the driver + +To compile: + +``` +cd driver +mkdir build && cd build +cmake .. +make +``` + ## Hardware `board` contains Autodesk EAGLE schematics and board files. **Note: last revision still untested.** diff --git a/driver/README.md b/driver/README.md deleted file mode 100644 index 937ac93..0000000 --- a/driver/README.md +++ /dev/null @@ -1,14 +0,0 @@ -usbmc -===== -This is VitaShell's patches for USB storage support as a standalone plugin. If -loaded on startup (before SceShell), it will automatically mount the USB -storage as `ux0` instead of the memory card or internal memory. - -To install, copy the plugin to `ur0:tai/usbmc.skprx` and add that path to the -taiHEN `ur0:tai/config.txt` under `*KERNEL`. If you have a memory card inserted -or you have a Vita with internal memory (LCD and PSTV), you must delete -`ux0:tai/config.txt` from the original memory and use `ur0:tai/config.txt` from -now on. This is because taiHEN loads before the memory card redirection patches -and will attempt to read config.txt from there first. - -Full credits to The_FloW for these patches.