Home User CP Donate Chat Register Today!  
  Get New posts Faq / Help?
   


Go Back   Hackint0sh > Projects and Hacks > iPhone > General > General

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-23-2009, 09:29 AM
volkspost
Status: Offline
iPhone Moderator
 
Join Date: Aug 2007
Posts: 3,624
Rep Power: 216
volkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to all
Default [All Firmware] How to add custom carrier bundles and symlink even without jailbreak

Installing carrier bundles via ipcc file and iTunes only worked for us if the carrier is one of Apples partners. Reason is simple: You need a symlink inside /Sytem/Library/Carrier Bundles/ aswell, it's name has to be put together from the carrier's MCC/MNC.

Here is a solution that includes the symlink. To create the special ipcc you need to be on a Mac (at least only tested on a Mac). Try on your own risk, working here perfect for me, btw.

The advantages are:

For all users at fw 2.x or (later) 3.x:
No need to jailbreak the iPhone if you want to use a custom carrier bundle

For users with 2.x firmware:
No more fiddeling around with PwnageTool payloads or WinSCP/PuTTY (Windows) or Cyberduck/Terminal (Mac).

For developers with 3.x firmware and a factory unlocked iPhone:
As long as there is no jailbreak available you are able to use carrier bundles with your favourite carrier that allow Tethering/MMS ...

For users with firmware 3.x (later):
Easy beef up your iPhone 3G with tethering and MMS even if you carrier does not allow it and even if the iPhone is not jailbroken.

For users with factory unlocked iPhone (fw 2 & 3 later):
Finally get rid of the "call forwarding" message without jailbreaking the iPhone.

For me:
I can beef up my webservice (http://www.hackint0sh.org/forum/f146/48683.htm and Carrier Bundle Generator iPhone FW 2.2.1 & PwnageTool 2.2.5 / Quickpwn 2.2.5) providing a solution for Windows & Mac, no Pwnage or SSH required.
The solution is not in place right now, will be in about 10 days, fw 2.2.1 only.


How to create the special ipcc:

You have to have a custom carrier bundle (in my example o2_DE_custom.bundle) of your provider (Not-Apple partner) and do know his MCC/MNC in my example 26207. There are many threads on how-to

On the Mac create a folder on the Desktop called "Payload". Place the carrier bundle inside.

Fire up the Terminal and
Code:
cd Desktop/Payload/
Check for the invisible file .DS_Store inside with
Code:
ls -al
If you find .DS_Store inside, type
Code:
rm .DS_Store
to remove it.

Then type (in my example)
Code:
ln -s o2_DE_custom.bundle 26207
then
Code:
cd ..
and last not least
Code:
zip -r -y o2_de.ipcc Payload/

Fire up iTunes, connect the iPhone and hit option-Update (Mac) or shift-Update (Windows) and select the ipcc. Carrier bundle and symlink get installed immediately and work the second they are installed.

Isn't this real fun?!
__________________
Read the stickies and search the forum before posting!
If you want to become a Hackint0sh supporter click here
----------
iPhone 3GS factory unlocked (3.1.2; Blackra1n, Cydia, OpenSSH, custom 3.0 ipcc file (no sig), tethering hack by Dev team, 32 GB)
iPhone 3G (3.0.1; Redsn0w 0.8, Cydia, OpenSSH) 16 GB

Last edited by volkspost; 04-29-2009 at 10:24 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2 (permalink)  
Old 03-23-2009, 03:13 PM
ac!
Status: Offline
Senior Member
 
Join Date: Mar 2009
Posts: 122
Rep Power: 12
ac! will become famous soon enough
Default

its real fun but the linking is not really needed.

Just name it Payload/Unknown.bundle and tell the Bundle which SIMs are supported:

<key>SupportedSIMs</key>
<array>
<string>26202</string>
<string>26204</string>
<string>26209</string>
<string>26203</string>
<string>26205</string>
<string>26277</string>
<string>26201</string>
<string>26206</string>
<string>26207</string>
<string>26208</string>
<string>26211</string>
</array>

With this method you can stick in any of those cards and even add custom MNC's and MCC's.

Those up there should cover all german mobile carriers.

Good day.

Last edited by ac!; 03-23-2009 at 03:16 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3 (permalink)  
Old 03-23-2009, 03:17 PM
volkspost
Status: Offline
iPhone Moderator
 
Join Date: Aug 2007
Posts: 3,624
Rep Power: 216
volkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to all
Default

Quote:
Originally Posted by ac! View Post
its real fun and not really needed.
Yes it is. The unknown bundle is there for good reason: roaming situations. Dont fiddle around with the unknown carrier bundle.
__________________
Read the stickies and search the forum before posting!
If you want to become a Hackint0sh supporter click here
----------
iPhone 3GS factory unlocked (3.1.2; Blackra1n, Cydia, OpenSSH, custom 3.0 ipcc file (no sig), tethering hack by Dev team, 32 GB)
iPhone 3G (3.0.1; Redsn0w 0.8, Cydia, OpenSSH) 16 GB
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Sponsored links Remove advertisements
Advertisement
Advertisement

  #4 (permalink)  
Old 03-23-2009, 03:37 PM
ac!
Status: Offline
Senior Member
 
Join Date: Mar 2009
Posts: 122
Rep Power: 12
ac! will become famous soon enough
Default

you can tell the bundle to include

<key>IntlDataRoamingSwitch</key>
<true/>

for a switch inside "network settings" and even:

<key>IntlDataRoamingExceptions</key>
<array>
<string>26206</string>
<string>26207</string>
<string>26211</string>
</array>

to exclude the MCC's and MNC's you'd like to disable :-)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5 (permalink)  
Old 03-23-2009, 03:54 PM
volkspost
Status: Offline
iPhone Moderator
 
Join Date: Aug 2007
Posts: 3,624
Rep Power: 216
volkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to all
Default

The discussion is really old if you search the forum. I'd not recommend fiddeling with the unknown.bundle, this did not change. It is possible and always was, old story. But again, dont do it if you dont have to.
__________________
Read the stickies and search the forum before posting!
If you want to become a Hackint0sh supporter click here
----------
iPhone 3GS factory unlocked (3.1.2; Blackra1n, Cydia, OpenSSH, custom 3.0 ipcc file (no sig), tethering hack by Dev team, 32 GB)
iPhone 3G (3.0.1; Redsn0w 0.8, Cydia, OpenSSH) 16 GB
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6 (permalink)  
Old 03-23-2009, 04:05 PM
dtube
Status: Online
Administrator
 
Join Date: Oct 2007
Posts: 3,917
Rep Power: 10
dtube is a name known to alldtube is a name known to alldtube is a name known to alldtube is a name known to alldtube is a name known to alldtube is a name known to all
Default

Yeah ...
Thanks Volkspost.
V. is right, don't mess around with the unknown.bundle.
The nice thing about this is no need for JB.
__________________
** If you just want to support hackint0sh.org with a donation click here **
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Sponsored links Remove advertisements
Advertisement
Advertisement

  #7 (permalink)  
Old 03-24-2009, 06:40 AM
bmasi
Status: Offline
Junior Member
 
Join Date: Aug 2007
Posts: 23
Rep Power: 0
bmasi is on a distinguished road
Send a message via MSN to bmasi
Default ipcc ClaroBR

Has anybody done it for Claro Brasil !? If yes please send the ipcc files !

Thanks
__________________
Socialize the Apps
@finggersmobile
www.finggers.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8 (permalink)  
Old 03-25-2009, 09:16 AM
buyrihn
Status: Offline
Junior Member
 
Join Date: Mar 2009
Posts: 8
Rep Power: 0
buyrihn is on a distinguished road
Default

I've been trying to get my Apple-sanctioned-unlocked phone some MMS and tethering love since I installed the 3.0 beta earlier (ok, MUCH earlier) this evening. I am frustrated.

I've tried a number of different methods to get a custom carrier bundle onto the damn phone, but I can't seem to do it. I imported my phone from Singapore, but I use it in the U.S. on T-Mobile. I'm using a custom carrier bundle that I made, that by all accounts, SHOULD work. It doesn't. When I found these instructions, it was like manna from heaven, but alas, I'm still starving.

I have followed the instruction to the tee, but nothin'. My iPhone 3G, running the 3.0 beta, will NOT update to this latest Carrier Version that I'm forcing on it. Rather, attempting to force on it. I'm running the latest version of OS X, and iTunes. I've included the *.ipcc file I've built using these instructions, and other sources for the correct info for the custom carrier.

Can anyone help? Please- this is driving me crazy.

http://dl.getdropbox.com/u/271803/TMobile_US.ipcc
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9 (permalink)  
Old 03-25-2009, 01:15 PM
volkspost
Status: Offline
iPhone Moderator
 
Join Date: Aug 2007
Posts: 3,624
Rep Power: 216
volkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to allvolkspost is a name known to all
Default

Quote:
Originally Posted by buyrihn View Post
I've been trying to get my Apple-sanctioned-unlocked phone some MMS and tethering love since I installed the 3.0 beta earlier (ok, MUCH earlier) this evening. I am frustrated.

I've tried a number of different methods to get a custom carrier bundle onto the damn phone, but I can't seem to do it. I imported my phone from Singapore, but I use it in the U.S. on T-Mobile. I'm using a custom carrier bundle that I made, that by all accounts, SHOULD work. It doesn't. When I found these instructions, it was like manna from heaven, but alas, I'm still starving.

I have followed the instruction to the tee, but nothin'. My iPhone 3G, running the 3.0 beta, will NOT update to this latest Carrier Version that I'm forcing on it. Rather, attempting to force on it. I'm running the latest version of OS X, and iTunes. I've included the *.ipcc file I've built using these instructions, and other sources for the correct info for the custom carrier.

Can anyone help? Please- this is driving me crazy.

http://dl.getdropbox.com/u/271803/TMobile_US.ipcc

Hmm. Is the iPhone factory unlocked, did it work with any carrier before at fe 2.2.1 without using jailbreak, Yellowsn0w?
__________________
Read the stickies and search the forum before posting!
If you want to become a Hackint0sh supporter click here
----------
iPhone 3GS factory unlocked (3.1.2; Blackra1n, Cydia, OpenSSH, custom 3.0 ipcc file (no sig), tethering hack by Dev team, 32 GB)
iPhone 3G (3.0.1; Redsn0w 0.8, Cydia, OpenSSH) 16 GB
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Sponsored links Remove advertisements
Advertisement
Advertisement

  #10 (permalink)  
Old 03-25-2009, 05:17 PM
buyrihn
Status: Offline
Junior Member
 
Join Date: Mar 2009
Posts: 8
Rep Power: 0
buyrihn is on a distinguished road
Default

Quote:
Originally Posted by volkspost View Post
Hmm. Is the iPhone factory unlocked, did it work with any carrier before at fe 2.2.1 without using jailbreak, Yellowsn0w?
Yes, the iPhone is factory unlocked, and I've never jailbroken the phone. It works with any carrier, any SIM card in all versions of the software. No matter what I seem to do, the phone stays stuck on Carrier Version 3.1. Does that help?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
[1.1.3/1.1.4](all)[Tutorial] Create custom carrier bundle in a minute volkspost Genius Bar - HowTos, Guides and Tutorials 23 11-20-2009 11:24 PM
Custom Carrier Bundle for iPhone Firmware 2.2.1 & PwnageTool/Quickpwn 2.2.5 (Mac&Win) volkspost PwnageTool 242 06-25-2009 11:55 PM
[1.1.4 - 2.0 beta 3] Auto-create PwnageTool 1.1 compatible custom carrier bundles volkspost PwnageTool 12 05-14-2008 08:27 AM
[Custom Packages][Solved] Info.plist Command for symlink available? volkspost PwnageTool 5 04-21-2008 05:05 PM
[1.1.3] Carrier symlink and logo png u67 General 4 02-20-2008 12:54 AM



All times are GMT +2. The time now is 06:23 AM.



Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.2 Ad Management by RedTyger
follow us on Twitter!

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448