Skip to content
This repository has been archived by the owner on Jul 30, 2019. It is now read-only.

Commit

Permalink
now ftpd works
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatNerdyPikachu committed Aug 17, 2018
1 parent d791026 commit b6d438c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions LaunchpadNX/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ private void startButton_Click(object sender, EventArgs e)
RunCommand("cd temp\\hekate && make -j");

// copy file

File.Copy("temp\\hekate\\ipl.bin", "CFW.bin", true);

// Atmosphere base (always ran)
Expand Down Expand Up @@ -296,14 +295,18 @@ private void startButton_Click(object sender, EventArgs e)
// sys-ftpd!
if (ftpdCheckbox.Checked)
{
// install mpg123
RunCommand("pacman -S switch-mpg123 --noconfirm --needed");

// clone it
RunCommand("git clone https://github.com/jakibaki/sys-ftpd.git temp\\sys-ftpd");

// build it
RunCommand("cd temp\\sys-ftpd && make");

// copy file
// copy files
File.Copy("temp\\sys-ftpd\\sys-ftpd.kip", "SD Root\\cfw\\sys-ftpd.kip");
CopyDirectory("temp\\sys-ftpd\\sd_card", "SD Root", true);

hekateConfig.Add("kip1=cfw/sys-ftpd.kip");
}
Expand Down

0 comments on commit b6d438c

Please sign in to comment.