forked from KolibriOS/kolibrios
installer: add tmp disk before copying files on it, switch to io.h lib
git-svn-id: svn://kolibrios.org@5662 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
c4b869d9eb
commit
65fb1ce67e
@ -1,8 +1,7 @@
|
|||||||
#define MEMSIZE 0xA1000
|
#define MEMSIZE 0xA1000
|
||||||
#include "..\lib\kolibri.h"
|
|
||||||
#include "..\lib\strings.h"
|
#include "..\lib\strings.h"
|
||||||
#include "..\lib\file_system.h"
|
|
||||||
#include "..\lib\mem.h"
|
#include "..\lib\mem.h"
|
||||||
|
#include "..\lib\io.h"
|
||||||
#include "..\lib\copyf.h"
|
#include "..\lib\copyf.h"
|
||||||
|
|
||||||
#include "..\lib\patterns\restart_process.h"
|
#include "..\lib\patterns\restart_process.h"
|
||||||
@ -16,17 +15,18 @@ void main()
|
|||||||
{
|
{
|
||||||
|
|
||||||
SetAddApplDir("kolibrios", abspath("kolibrios")+1);
|
SetAddApplDir("kolibrios", abspath("kolibrios")+1);
|
||||||
RunProgram("/sys/media/kiv", "\\S__/kolibrios/res/Wallpapers/In the wind there is longing.png");
|
io.run("/sys/media/kiv", "\\S__/kolibrios/res/Wallpapers/In the wind there is longing.png");
|
||||||
copyf(abspath("tmp"), "/tmp0/1");
|
|
||||||
copyf(abspath("sys"), "/sys");
|
copyf(abspath("sys"), "/sys");
|
||||||
RestartProcessByName("@icon", MULTIPLE);
|
RestartProcessByName("@icon", MULTIPLE);
|
||||||
RestartProcessByName("@taskbar", SINGLE);
|
RestartProcessByName("@taskbar", SINGLE);
|
||||||
RestartProcessByName("@docky", SINGLE);
|
RestartProcessByName("@docky", SINGLE);
|
||||||
notify(T_END);
|
notify(T_END);
|
||||||
|
io.run("/sys/tmpdisk", "a0s10");
|
||||||
|
pause(50);
|
||||||
|
copyf(abspath("tmp"), "/tmp0/1");
|
||||||
ExitProcess();
|
ExitProcess();
|
||||||
}
|
}
|
||||||
|
|
||||||
void copyf_Draw_Progress(dword filename) { return; }
|
void copyf_Draw_Progress(dword filename) { return; }
|
||||||
|
|
||||||
|
|
||||||
stop:
|
stop:
|
Loading…
Reference in New Issue
Block a user