Homebrew Suggest use SD:\wiiu\install instead of SD:\install

pelago

Member
OP
Member
Joined
Feb 20, 2006
Messages
1,019
Trophies
0
XP
565
Country
It may be too long established and too hard to change this, but if I may make a suggestion: It seems better to me if the "install" folder that disc2app and WUP Installer uses was a subfolder of the "wiiu" folder, so sitting side-by-side with "apps". It could be called "install" or maybe "wupinstall", but the important thing is that I think it should be within "wiiu" rather than at the root of the SD card.

Justification: neatness (especially for OCD types), but also clarity, especially if the same SD card is used for multiple purposes or for multiple systems. The "wiiu" folder already exists, so let's use it for more than just the "apps" subfolder.

I realise this would mean updates to disc2app, WUP Installer and its various forks, as well as updates to various guides and tutorials, and it will be some effort. Paging @dimok @Yardape8000 @Benoit934 @EyeKey for their opinions.
 
  • Like
Reactions: ole and LaPingas
D

Deleted User

Guest
Why tho?
It doesn't change anything and just confuses majority of users. [Imagine searching it when you forgot...]
 

DinohScene

Gay twink catboy
Global Moderator
Joined
Oct 11, 2011
Messages
22,552
Trophies
4
Location
Восторг
XP
22,819
Country
Antarctica
Yeah and you said especially for OCD type of people. If you had OCD you'd delete the folder straight away after installing stuff anyway.

People with data OCD create organized folder structures to store everything on a central place and use SD cards/USB drives to store it temporarily.
I know cause I am one ;')
 
  • Like
Reactions: Minasodrom

ScarletDreamz

[Debug Mode]
Member
Joined
Feb 16, 2015
Messages
3,967
Trophies
1
Location
/dev/sda1
XP
4,380
Country
United States
It may be too long established and too hard to change this, but if I may make a suggestion: It seems better to me if the "install" folder that disc2app and WUP Installer uses was a subfolder of the "wiiu" folder, so sitting side-by-side with "apps". It could be called "install" or maybe "wupinstall", but the important thing is that I think it should be within "wiiu" rather than at the root of the SD card.

Justification: neatness (especially for OCD types), but also clarity, especially if the same SD card is used for multiple purposes or for multiple systems. The "wiiu" folder already exists, so let's use it for more than just the "apps" subfolder.

I realise this would mean updates to disc2app, WUP Installer and its various forks, as well as updates to various guides and tutorials, and it will be some effort. Paging @dimok @Yardape8000 @Benoit934 @EyeKey for their opinions.
Here, On wupinstaller mod y open main.c

and look for:
Code:
static void GetInstallDir(char *dest, int size)
{
   DIR *dirPtr;
   struct dirent *dirEntry;     
   dirPtr = opendir ("sd:/install/");
   int dirsFound = 0;
   
   if (dirPtr != NULL)
   {
       dirEntry = readdir(dirPtr);
       if (dirEntry != NULL && dirEntry->d_type == DT_DIR)
       {
           seekdir(dirPtr, dirNum);
           dirEntry = readdir(dirPtr);
           closedir (dirPtr);
           if (dirEntry != NULL && dirEntry->d_type == DT_DIR)
               __os_snprintf(dest, size, "install/%s", dirEntry->d_name);
           else
           {
               dirNum--;
               if (dirNum < 0)
                   dirNum = 0;
           }
           dirsFound = 1;
       }
   }
   if (!dirsFound)
   {
       __os_snprintf(dest, size, "install");
       dirNum = 0;
   }
}
and
Code:
static void setAllFolderSelect(bool state)
{
   DIR *dirPtr;
   struct dirent *dirEntry;     
   
   for (int i = 0; i < 1023; i++)
       folderSelect[i] = false;

   if (state)
   {
       dirPtr = opendir ("sd:/install/");
       if (dirPtr != NULL)
       {
           int i = 0;
           while (1)
           {
               dirEntry = readdir(dirPtr);
               if (dirEntry == NULL || dirEntry->d_type != DT_DIR)
                   break;
               folderSelect[i++] = true;
           }
           closedir (dirPtr);
       }
   }
}
Change on both irPtr = opendir ("sd:/install/"); to irPtr = opendir ("sd:/WiiUGamesToInstall/");
Recompile.
Profit.
 
  • Like
Reactions: Jakic007

nexusmtz

Well-Known Member
Member
Joined
Feb 17, 2016
Messages
1,386
Trophies
0
XP
1,425
Country
United States
And if this got done, would the next target be haxchi? tik2sd? wudump? If it makes you uncomfortable, label the card WiiU. Don't use it for anything else.
 

AmandaRose

Do what I do. Hold tight and pretend it’s a plan
Member
Joined
Aug 19, 2015
Messages
10,199
Trophies
1
Location
Glasgow
Website
www.rockstarnorth.com
XP
16,176
Country
United Kingdom
It may be too long established and too hard to change this, but if I may make a suggestion: It seems better to me if the "install" folder that disc2app and WUP Installer uses was a subfolder of the "wiiu" folder, so sitting side-by-side with "apps". It could be called "install" or maybe "wupinstall", but the important thing is that I think it should be within "wiiu" rather than at the root of the SD card.

Justification: neatness (especially for OCD types), but also clarity, especially if the same SD card is used for multiple purposes or for multiple systems. The "wiiu" folder already exists, so let's use it for more than just the "apps" subfolder.

I realise this would mean updates to disc2app, WUP Installer and its various forks, as well as updates to various guides and tutorials, and it will be some effort. Paging @dimok @Yardape8000 @Benoit934 @EyeKey for their opinions.
This is the most pointless request I have seen on the website in a long time.
 

AmandaRose

Do what I do. Hold tight and pretend it’s a plan
Member
Joined
Aug 19, 2015
Messages
10,199
Trophies
1
Location
Glasgow
Website
www.rockstarnorth.com
XP
16,176
Country
United Kingdom
It made me think that people with OCD are weird...
Lol my wife has OCD and even she said this thread was dumb and a waste of time. She is constantly moving my games about on the WiiU homescreen she has to have all the Mario games together then all the Zeldas ect and then they are all put in the order they first came out ect. Me I would just have them in any old order and not care lol.
 

xtheman

Well-Known Member
Member
Joined
Jan 28, 2016
Messages
5,837
Trophies
0
Location
???
XP
3,790
Country
United States
People seem to not think about allowing to install from both /install/ and /wiiu/install/

As for anyone who needs to install from anywhere, use sys config tool and it can install from any directory.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
  • K3Nv2 @ K3Nv2:
    I'll reformat and have a 3tb raid0 m. 2 at least
    +1
  • K3Nv2 @ K3Nv2:
    Lmao that sold out fast
    +1
  • Veho @ Veho:
    Yeet the cat.
    +1
  • K3Nv2 @ K3Nv2:
    Good idea
    +1
  • The Real Jdbye @ The Real Jdbye:
    i thought everybody knew cocktails are like 75% ice
  • Veho @ Veho:
    Yeah but not like this.
  • Veho @ Veho:
    It's not like they're complaining that their Slurpee is 99% ice or something, but if the cocktail calls for "shot of vodka, shot of vermouth, shot of gin, shot of Campari, three shots of juice, squirt of lemon" and ends up being a thimbleful of booze, that's a problem.
  • The Real Jdbye @ The Real Jdbye:
    the funny thing is cocktails in norway are only allowed to have 1 20ml shot of booze
  • The Real Jdbye @ The Real Jdbye:
    so..... yeah
  • The Real Jdbye @ The Real Jdbye:
    we're used to only having a thimbleful of booze
  • Veho @ Veho:
    Booo.
  • The Real Jdbye @ The Real Jdbye:
    same thing if you want whisky on the rocks or something, you can't get a double
  • The Real Jdbye @ The Real Jdbye:
    but you could buy as many shots of whisky (or anything else) as you want and ask for a glass of ice and pour them in
  • The Real Jdbye @ The Real Jdbye:
    it's dumb
  • Veho @ Veho:
    Maybe.
  • Veho @ Veho:
    There was a comparison of the number of Ibuprofen poisonings before and after they limited the maximum dosage per box or per pill (i'll look that up). No limit on the number of boxes you can still buy as many as you want, so people argued it was pointless.
  • Veho @ Veho:
    But the number of (accidental) poisonings dropped because drinking an entire package of ibuprofen pills went from "I need a new liver" to "I need a new box of Ibuprofen".
  • Veho @ Veho:
    Here we have ketoprofen that used to be prescription-only because of the risk of toxic dosages, but then they halved the dose per pill and sell them in bottles of six pills apiece instead of twenty and it doesn't need a prescription any more. Yes you can buy more than one bottle but people simply don't.
  • Psionic Roshambo @ Psionic Roshambo:
    Usually accidentally overdose of ibuprofen here is from people taking like cold medicine then ibuprofen for a headache and the combination is over what they need
    Veho @ Veho: https://imgur.com/gallery/QQkYnQu