Porting installer...

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
jrfritz

Porting installer...

Post by jrfritz »

I'm currently porting the FritzOS installer to windows...and I came up with a problem.

I used:

cat boot.bin kernel32.bin | somefile.img ( or something like that...I forgot the exact command line ...

now... how would I be able to take two files...and convert them to 1 file consecutively using a GNU tool?

Thankyou,
nullify

Re:Porting installer...

Post by nullify »

cat file1 file2 > merged_file
jrfritz

Re:Porting installer...

Post by jrfritz »

Yes...but I am porting the installer to windows...

so I need windows tools ;)
nullify

Re:Porting installer...

Post by nullify »

copy /b file1 + file2 merged_file
jrfritz

Re:Porting installer...

Post by jrfritz »

Oh..ty...

I forgot about that option...
Post Reply