Ticket #945: boot-haiku1.diff
File boot-haiku1.diff, 62.4 KB (added by , 17 years ago) |
---|
-
3rdparty/mmu_man/themes/addons/DeskbarAddon.cpp
59 59 status_t err; 60 60 entry_ref ref; 61 61 BEntry ent; 62 err = ent.SetTo("/boot/ beos/preferences/Deskbar");62 err = ent.SetTo("/boot/haiku/preferences/Deskbar"); 63 63 if (!err) { 64 64 err = ent.GetRef(&ref); 65 65 if (!err) { -
3rdparty/mmu_man/themes/addons/SoundsAddon.cpp
63 63 status_t err; 64 64 entry_ref ref; 65 65 BEntry ent; 66 err = ent.SetTo("/boot/ beos/preferences/Sounds");66 err = ent.SetTo("/boot/haiku/preferences/Sounds"); 67 67 if (!err) { 68 68 err = ent.GetRef(&ref); 69 69 if (!err) { -
3rdparty/mmu_man/themes/addons/HaikuUISettingsAddon.cpp
126 126 */ 127 127 if (!err) 128 128 return B_OK; 129 err = ent.SetTo("/boot/ beos/preferences/Appearance");129 err = ent.SetTo("/boot/haiku/preferences/Appearance"); 130 130 if (!err) { 131 131 err = ent.GetRef(&ref); 132 132 if (!err) { -
3rdparty/mmu_man/themes/addons/ScreensaverAddon.cpp
68 68 status_t err; 69 69 entry_ref ref; 70 70 BEntry ent; 71 err = ent.SetTo("/boot/ beos/preferences/ScreenSaver");71 err = ent.SetTo("/boot/haiku/preferences/ScreenSaver"); 72 72 if (!err) { 73 73 err = ent.GetRef(&ref); 74 74 if (!err) { -
3rdparty/mmu_man/themes/addons/BackgroundsAddon.cpp
80 80 status_t err; 81 81 entry_ref ref; 82 82 BEntry ent; 83 err = ent.SetTo("/boot/ beos/preferences/Backgrounds");83 err = ent.SetTo("/boot/haiku/preferences/Backgrounds"); 84 84 if (!err) { 85 85 err = ent.GetRef(&ref); 86 86 if (!err) { -
3rdparty/mmu_man/themes/addons/HaikuWindowDecorAddon.cpp
99 99 status_t err; 100 100 entry_ref ref; 101 101 BEntry ent; 102 err = ent.SetTo("/boot/ beos/references/Appearance");102 err = ent.SetTo("/boot/haiku/references/Appearance"); 103 103 if (!err) { 104 104 err = ent.GetRef(&ref); 105 105 if (!err) { -
3rdparty/mmu_man/themes/ThemeManager.cpp
879 879 880 880 err = ThemeLocation(id, location); 881 881 if (!err) { 882 if (location.FindFirst("/boot/ beos") >= 0) {882 if (location.FindFirst("/boot/haiku") >= 0) { 883 883 PRINT(("trying to save theme '%s' to system dir!\n", name.String())); 884 884 return B_PERMISSION_DENIED; 885 885 } … … 1087 1087 err = ThemeLocation(id, s); 1088 1088 if (err) 1089 1089 return true; 1090 if (s.FindFirst("/boot/ beos") >= 0)1090 if (s.FindFirst("/boot/haiku") >= 0) 1091 1091 return true; 1092 1092 return false; 1093 1093 } -
build/jam/UserBuildConfig.ReadMe
14 14 15 15 # Adding timezone and keymap settings 16 16 AddSymlinkToHaikuImage home config settings 17 : /boot/ beos/etc/timezones/Europe/Paris : timezone ;17 : /boot/haiku/etc/timezones/Europe/Paris : timezone ; 18 18 19 19 AddFilesToHaikuImage home config settings : <keymap>US-International 20 20 : Key_map ; … … 88 88 # has been added, like for "kernel"). 89 89 HAIKU_INCLUDE_IN_IMAGE on libbe.so kernel = 1 ; 90 90 91 # Add "crashing_app" to the beos/bin directory of the Haiku image/installation.91 # Add "crashing_app" to the haiku/bin directory of the Haiku image/installation. 92 92 # Note, that this also makes the image depend on the target, i.e. it is 93 93 # automatically updated when the image is built. 94 AddFilesToHaikuImage beosbin : crashing_app ;94 AddFilesToHaikuImage haiku bin : crashing_app ; 95 95 96 96 # Make a symlink to home/config/bin/crash. 97 AddSymlinkToHaikuImage home config bin : / beos/bin/crashing_app : crash ;97 AddSymlinkToHaikuImage home config bin : /haiku/bin/crashing_app : crash ; 98 98 99 99 # Adds the source directories src/kits/storage and src/tests/servers/debug 100 100 # (recursively) to the image (as /boot/home/HaikuSources/src/kits/storage -
build/jam/OptionalPackages
38 38 AddFilesToHaikuImage develop lib x86 : libncurses.a ; 39 39 40 40 # cc and c++ wrapper scripts 41 AddFilesToHaikuImage beosbin : cc c++ ;41 AddFilesToHaikuImage haiku bin : cc c++ ; 42 42 43 43 # headers 44 44 AddHeaderDirectoryToHaikuImage gnu : 3rdparty ; -
build/jam/ImageRules
246 246 { 247 247 # AddDriversToContainer <container> : <relative directory> : <targets> ; 248 248 # 249 local directoryTokens = beossystem add-ons kernel drivers dev249 local directoryTokens = haiku system add-ons kernel drivers dev 250 250 $(relativeDirectoryTokens) ; 251 251 252 AddFilesToContainer $(container) : beossystem add-ons kernel drivers bin252 AddFilesToContainer $(container) : haiku system add-ons kernel drivers bin 253 253 : $(targets) ; 254 254 255 255 # If the image shall only be updated, we don't add any symlinks. … … 278 278 # AddDriverRegistrationToContainer <container> : <directory> 279 279 # : <link target> : <link names> ] ; 280 280 # 281 local directoryTokens = beossystem add-ons kernel registration281 local directoryTokens = haiku system add-ons kernel registration 282 282 $(relativeDirectoryTokens) ; 283 283 284 284 # get the relative symlink path prefix … … 321 321 local name = $(target:BS) ; 322 322 local linkTarget = [ FDirName /boot $(installDir:G=) $(name) ] ; 323 323 324 AddSymlinkToContainer $(container) : beossystem add-ons kernel boot324 AddSymlinkToContainer $(container) : haiku system add-ons kernel boot 325 325 : $(linkTarget) : $(name) ; 326 326 } 327 327 } … … 688 688 Always $(file) ; 689 689 MakeLocate $(file) : $(HAIKU_COMMON_PLATFORM_OBJECT_DIR) ; 690 690 BuildHaikuImageUserGroupFile $(file) ; 691 AddFilesToHaikuImage beosetc : $(file) ;691 AddFilesToHaikuImage haiku etc : $(file) ; 692 692 } 693 693 694 694 HAIKU_IMAGE_USER_GROUP_ENTRIES on $(file) = $(allEntries) ; -
build/jam/FloppyBootImage
38 38 39 39 40 40 # modules 41 AddFilesToFloppyBootArchive beossystem add-ons kernel bus_managers41 AddFilesToFloppyBootArchive haiku system add-ons kernel bus_managers 42 42 : $(BEOS_ADD_ONS_BUS_MANAGERS) ; 43 AddFilesToFloppyBootArchive beossystem add-ons kernel busses agp_gart43 AddFilesToFloppyBootArchive haiku system add-ons kernel busses agp_gart 44 44 : $(X86_ONLY)<agp_gart>intel ; 45 AddFilesToFloppyBootArchive beossystem add-ons kernel busses ide45 AddFilesToFloppyBootArchive haiku system add-ons kernel busses ide 46 46 : ahci generic_ide_pci $(X86_ONLY)ide_isa silicon_image_3112 legacy_sata ; 47 AddFilesToFloppyBootArchive beossystem add-ons kernel console : vga_text ;48 AddFilesToFloppyBootArchive beossystem add-ons kernel file_systems47 AddFilesToFloppyBootArchive haiku system add-ons kernel console : vga_text ; 48 AddFilesToFloppyBootArchive haiku system add-ons kernel file_systems 49 49 : $(BEOS_ADD_ONS_FILE_SYSTEMS) ; 50 AddFilesToFloppyBootArchive beossystem add-ons kernel generic50 AddFilesToFloppyBootArchive haiku system add-ons kernel generic 51 51 : block_io fast_log ide_adapter locked_pool scsi_periph ; 52 AddFilesToFloppyBootArchive beossystem add-ons kernel partitioning_systems52 AddFilesToFloppyBootArchive haiku system add-ons kernel partitioning_systems 53 53 : intel session ; 54 AddFilesToFloppyBootArchive beossystem add-ons kernel interrupt_controllers54 AddFilesToFloppyBootArchive haiku system add-ons kernel interrupt_controllers 55 55 : $(PPC_ONLY)openpic ; 56 56 57 57 if $(TARGET_ARCH) = x86 { 58 AddFilesToFloppyBootArchive beossystem add-ons kernel cpu : generic_x86 ;58 AddFilesToFloppyBootArchive haiku system add-ons kernel cpu : generic_x86 ; 59 59 } 60 60 61 61 # drivers … … 67 67 } 68 68 69 69 # kernel 70 AddFilesToFloppyBootArchive beossystem : <revisioned>kernel_$(TARGET_ARCH) ;70 AddFilesToFloppyBootArchive haiku system : <revisioned>kernel_$(TARGET_ARCH) ; 71 71 72 72 # scripts and data files 73 73 … … 79 79 80 80 if $(NET_BOOT) = 1 { 81 81 # add-ons 82 AddFilesToFloppyBootArchive beossystem add-ons kernel network82 AddFilesToFloppyBootArchive haiku system add-ons kernel network 83 83 : stack socket ; 84 AddFilesToFloppyBootArchive beossystem add-ons kernel network devices84 AddFilesToFloppyBootArchive haiku system add-ons kernel network devices 85 85 : $(BEOS_NETWORK_DEVICES) ; 86 AddFilesToFloppyBootArchive beossystem add-ons kernel network datalink_protocols86 AddFilesToFloppyBootArchive haiku system add-ons kernel network datalink_protocols 87 87 : $(BEOS_NETWORK_DATALINK_PROTOCOLS) ; 88 AddFilesToFloppyBootArchive beossystem add-ons kernel network ppp88 AddFilesToFloppyBootArchive haiku system add-ons kernel network ppp 89 89 : $(BEOS_NETWORK_PPP) ; 90 AddFilesToFloppyBootArchive beossystem add-ons kernel network protocols90 AddFilesToFloppyBootArchive haiku system add-ons kernel network protocols 91 91 : $(BEOS_NETWORK_PROTOCOLS) ; 92 92 } 93 93 -
build/jam/HaikuImage
140 140 141 141 142 142 # modules 143 AddFilesToHaikuImage beossystem add-ons kernel bus_managers143 AddFilesToHaikuImage haiku system add-ons kernel bus_managers 144 144 : $(BEOS_ADD_ONS_BUS_MANAGERS) ; 145 AddFilesToHaikuImage beossystem add-ons kernel busses agp_gart145 AddFilesToHaikuImage haiku system add-ons kernel busses agp_gart 146 146 : $(X86_ONLY)<agp_gart>intel ; 147 AddFilesToHaikuImage beossystem add-ons kernel busses ide147 AddFilesToHaikuImage haiku system add-ons kernel busses ide 148 148 : generic_ide_pci $(X86_ONLY)ide_isa silicon_image_3112 legacy_sata ; 149 AddFilesToHaikuImage beossystem add-ons kernel busses scsi149 AddFilesToHaikuImage haiku system add-ons kernel busses scsi 150 150 : ahci ; 151 AddFilesToHaikuImage beossystem add-ons kernel busses usb151 AddFilesToHaikuImage haiku system add-ons kernel busses usb 152 152 : <usb>uhci <usb>ehci ; 153 AddFilesToHaikuImage beossystem add-ons kernel console : vga_text ;154 AddFilesToHaikuImage beossystem add-ons kernel debugger153 AddFilesToHaikuImage haiku system add-ons kernel console : vga_text ; 154 AddFilesToHaikuImage haiku system add-ons kernel debugger 155 155 : <kdebug>hangman <kdebug>invalidate_on_exit ; 156 AddFilesToHaikuImage beossystem add-ons kernel file_systems156 AddFilesToHaikuImage haiku system add-ons kernel file_systems 157 157 : $(BEOS_ADD_ONS_FILE_SYSTEMS) ; 158 AddFilesToHaikuImage beossystem add-ons kernel generic158 AddFilesToHaikuImage haiku system add-ons kernel generic 159 159 : block_io dpc fast_log ide_adapter locked_pool mpu401 scsi_periph ; 160 AddFilesToHaikuImage beossystem add-ons kernel partitioning_systems160 AddFilesToHaikuImage haiku system add-ons kernel partitioning_systems 161 161 : intel session ; 162 AddFilesToHaikuImage beossystem add-ons kernel interrupt_controllers162 AddFilesToHaikuImage haiku system add-ons kernel interrupt_controllers 163 163 : $(PPC_ONLY)openpic ; 164 164 165 165 if $(TARGET_ARCH) = x86 { 166 AddFilesToHaikuImage beossystem add-ons kernel cpu : generic_x86 ;166 AddFilesToHaikuImage haiku system add-ons kernel cpu : generic_x86 ; 167 167 } 168 168 169 169 # drivers … … 183 183 #AddDriversToHaikuImage power : $(BEOS_ADD_ONS_DRIVERS_ACPI) ; 184 184 185 185 # kernel 186 AddFilesToHaikuImage beossystem : <revisioned>kernel_$(TARGET_ARCH) ;186 AddFilesToHaikuImage haiku system : <revisioned>kernel_$(TARGET_ARCH) ; 187 187 188 188 # libs 189 AddFilesToHaikuImage beossystem lib : $(BEOS_SYSTEM_LIBS) ;189 AddFilesToHaikuImage haiku system lib : $(BEOS_SYSTEM_LIBS) ; 190 190 191 191 # libnetwork.so replaces quite a few libraries 192 192 BEOS_SYSTEM_LIBS_LIBNETWORK_ALIASES … … 194 194 195 195 local lib ; 196 196 for lib in $(BEOS_SYSTEM_LIBS_LIBNETWORK_ALIASES) { 197 AddSymlinkToHaikuImage beossystem lib : libnetwork.so : $(lib) ;197 AddSymlinkToHaikuImage haiku system lib : libnetwork.so : $(lib) ; 198 198 } 199 199 200 200 # libGL.so has GLUT built-in 201 201 if $(TARGET_ARCH) = x86 { 202 AddSymlinkToHaikuImage beossystem lib : $(X86_ONLY)libGL.so : libglut.so ;202 AddSymlinkToHaikuImage haiku system lib : $(X86_ONLY)libGL.so : libglut.so ; 203 203 } 204 204 205 205 # servers 206 AddFilesToHaikuImage beossystem servers : $(BEOS_SYSTEM_SERVERS) ;206 AddFilesToHaikuImage haiku system servers : $(BEOS_SYSTEM_SERVERS) ; 207 207 208 208 # apps 209 AddFilesToHaikuImage beossystem : runtime_loader Deskbar Tracker ;210 AddFilesToHaikuImage beosbin : $(BEOS_BIN) consoled ;211 AddFilesToHaikuImage beosapps : $(BEOS_APPS) ;212 AddFilesToHaikuImage beospreferences : $(BEOS_PREFERENCES) ;213 AddFilesToHaikuImage beosdemos : $(BEOS_DEMOS) ;209 AddFilesToHaikuImage haiku system : runtime_loader Deskbar Tracker ; 210 AddFilesToHaikuImage haiku bin : $(BEOS_BIN) consoled ; 211 AddFilesToHaikuImage haiku apps : $(BEOS_APPS) ; 212 AddFilesToHaikuImage haiku preferences : $(BEOS_PREFERENCES) ; 213 AddFilesToHaikuImage haiku demos : $(BEOS_DEMOS) ; 214 214 215 215 SEARCH on which = [ FDirName $(HAIKU_TOP) data bin ] ; 216 AddFilesToHaikuImage beosbin : which ;216 AddFilesToHaikuImage haiku bin : which ; 217 217 218 AddSymlinkToHaikuImage beosbin : sh : bash ;218 AddSymlinkToHaikuImage haiku bin : sh : bash ; 219 219 220 220 AddSymlinkToHaikuImage home Desktop : /boot/home : Home ; 221 221 … … 228 228 local app ; 229 229 for app in $(DESKBAR_APPLICATIONS) { 230 230 AddSymlinkToHaikuImage home config be Applications 231 : /boot/ beos/apps/$(app) : $(app) ;231 : /boot/haiku/apps/$(app) : $(app) ; 232 232 } 233 233 234 234 # Deskbar Desktop Applets links … … 238 238 ; 239 239 for app in $(DESKBAR_DESKTOP_APPLETS) { 240 240 AddSymlinkToHaikuImage home config be Desktop\ Applets 241 : /boot/ beos/apps/$(app) : $(app) ;241 : /boot/haiku/apps/$(app) : $(app) ; 242 242 } 243 243 244 244 # Deskbar Preferences and Demos links 245 AddSymlinkToHaikuImage home config be : /boot/ beos/preferences : Preferences ;246 AddSymlinkToHaikuImage home config be : /boot/ beos/demos : Demos ;245 AddSymlinkToHaikuImage home config be : /boot/haiku/preferences : Preferences ; 246 AddSymlinkToHaikuImage home config be : /boot/haiku/demos : Demos ; 247 247 248 AddSymlinkToHaikuImage beosbin : bzip2 : bunzip2 ;249 AddSymlinkToHaikuImage beosbin : less : more ;250 AddSymlinkToHaikuImage beosbin : gzip : gunzip ;251 AddSymlinkToHaikuImage beosbin : gzip : zcat ;252 AddSymlinkToHaikuImage beosbin : zdiff : zcmp ;253 AddSymlinkToHaikuImage beosbin : unzip : zipinfo ;254 AddSymlinkToHaikuImage beosbin : gawk : awk ;255 AddSymlinkToHaikuImage beosbin : grep : egrep ;256 AddSymlinkToHaikuImage beosbin : grep : fgrep ;257 AddSymlinkToHaikuImage beosbin : vim : vi ;258 AddSymlinkToHaikuImage beosbin : vim : view ;248 AddSymlinkToHaikuImage haiku bin : bzip2 : bunzip2 ; 249 AddSymlinkToHaikuImage haiku bin : less : more ; 250 AddSymlinkToHaikuImage haiku bin : gzip : gunzip ; 251 AddSymlinkToHaikuImage haiku bin : gzip : zcat ; 252 AddSymlinkToHaikuImage haiku bin : zdiff : zcmp ; 253 AddSymlinkToHaikuImage haiku bin : unzip : zipinfo ; 254 AddSymlinkToHaikuImage haiku bin : gawk : awk ; 255 AddSymlinkToHaikuImage haiku bin : grep : egrep ; 256 AddSymlinkToHaikuImage haiku bin : grep : fgrep ; 257 AddSymlinkToHaikuImage haiku bin : vim : vi ; 258 AddSymlinkToHaikuImage haiku bin : vim : view ; 259 259 260 260 261 261 # scripts and data files 262 262 local bootScripts = Bootscript Bootscript.cd SetupEnvironment Netscript InstallerInitScript 263 263 InstallerFinishScript ; 264 264 SEARCH on $(bootScripts) = [ FDirName $(HAIKU_TOP) data system boot ] ; 265 AddFilesToHaikuImage beossystem boot : $(bootScripts) ;265 AddFilesToHaikuImage haiku system boot : $(bootScripts) ; 266 266 267 267 local logoArtwork = "HAIKU logo - white on blue - big.png" 268 268 "HAIKU logo - white on blue - small.png" ; 269 269 SEARCH on $(logoArtwork) = [ FDirName $(HAIKU_TOP) data artwork ] ; 270 AddFilesToHaikuImage beosetc artwork : $(logoArtwork) ;270 AddFilesToHaikuImage haiku etc artwork : $(logoArtwork) ; 271 271 272 272 # Mail spell check dictionaries 273 273 local spellFiles = words geekspeak ; 274 274 spellFiles = $(spellFiles:G=spell) ; 275 275 SEARCH on $(spellFiles) 276 276 = [ FDirName $(HAIKU_TOP) src apps mail ] ; 277 AddFilesToHaikuImage beosetc word_dictionary : $(spellFiles) ;277 AddFilesToHaikuImage haiku etc word_dictionary : $(spellFiles) ; 278 278 279 279 local svgFiles = "lion.svg" ; 280 280 SEARCH on $(svgFiles) 281 281 = [ FDirName $(HAIKU_TOP) src tests kits interface picture ] ; 282 AddFilesToHaikuImage beosetc artwork : $(svgFiles) ;282 AddFilesToHaikuImage haiku etc artwork : $(svgFiles) ; 283 283 284 284 # TODO: Use data/etc/termcap or src/libs/termcap.src? 285 285 local etcFiles = inputrc profile termcap teapot.data ; 286 286 etcFiles = $(etcFiles:G=etc) ; 287 287 SEARCH on $(etcFiles) = [ FDirName $(HAIKU_TOP) data etc ] ; 288 AddFilesToHaikuImage beosetc : $(etcFiles) ;288 AddFilesToHaikuImage haiku etc : $(etcFiles) ; 289 289 290 290 local fortuneFiles = Art Computers Education Food Fortunes Goedel Haiku 291 291 Humorists Kids Law "Linux cookies" Love Magic Medicine Miscellaneous … … 293 293 Sports "Tech Support Excuses" ; 294 294 fortuneFiles = $(fortuneFiles:G=etc!fortunes) ; 295 295 SEARCH on $(fortuneFiles) = [ FDirName $(HAIKU_TOP) data etc fortunes ] ; 296 AddFilesToHaikuImage beosetc fortunes : $(fortuneFiles) ;296 AddFilesToHaikuImage haiku etc fortunes : $(fortuneFiles) ; 297 297 298 298 local fontDir = [ FDirName $(HAIKU_TOP) data etc fonts ] ; 299 299 local psFonts = [ Glob $(fontDir)/psfonts : *.afm *.pfb ] ; 300 300 local ttFonts = [ Glob $(fontDir)/ttfonts : *.ttf ] ; 301 AddFilesToHaikuImage beosetc fonts psfonts : $(psFonts) ;302 AddFilesToHaikuImage beosetc fonts ttfonts : $(ttFonts) ;301 AddFilesToHaikuImage haiku etc fonts psfonts : $(psFonts) ; 302 AddFilesToHaikuImage haiku etc fonts ttfonts : $(ttFonts) ; 303 303 304 304 local kanbeDir = [ FDirName $(HAIKU_TOP) data etc KanBe ] ; 305 305 local kanbeDefault = [ Glob $(kanbeDir)/default : *.canna *.gz ] ; 306 306 local kanbeDic = [ Glob $(kanbeDir)/dic : *.cbp ] ; 307 307 local kanbeDicCanna = [ Glob $(kanbeDir)/dic/canna 308 308 : *.cld *.ctd *.cbd *.dir ] ; 309 AddFilesToHaikuImage beosetc KanBe default : $(kanbeDefault) ;310 AddFilesToHaikuImage beosetc KanBe dic : $(kanbeDic) ;311 AddFilesToHaikuImage beosetc KanBe dic canna : $(kanbeDicCanna) ;312 AddDirectoryToHaikuImage beosetc KanBe dic group ;313 AddDirectoryToHaikuImage beosetc KanBe dic user ;309 AddFilesToHaikuImage haiku etc KanBe default : $(kanbeDefault) ; 310 AddFilesToHaikuImage haiku etc KanBe dic : $(kanbeDic) ; 311 AddFilesToHaikuImage haiku etc KanBe dic canna : $(kanbeDicCanna) ; 312 AddDirectoryToHaikuImage haiku etc KanBe dic group ; 313 AddDirectoryToHaikuImage haiku etc KanBe dic user ; 314 314 315 315 local keymapFiles = [ GLOB [ FDirName $(HAIKU_TOP) src data etc keymaps ] 316 316 : *.keymap ] ; 317 317 keymapFiles = $(keymapFiles:BG=keymap) ; 318 AddFilesToHaikuImage beosetc Keymap : $(keymapFiles) ;319 AddSymlinkToHaikuImage beosetc Keymap : Swedish : Finnish ;320 AddSymlinkToHaikuImage beosetc Keymap : Slovene : Croatian ;321 AddSymlinkToHaikuImage beosetc Keymap : US-International : Brazilian ;318 AddFilesToHaikuImage haiku etc Keymap : $(keymapFiles) ; 319 AddSymlinkToHaikuImage haiku etc Keymap : Swedish : Finnish ; 320 AddSymlinkToHaikuImage haiku etc Keymap : Slovene : Croatian ; 321 AddSymlinkToHaikuImage haiku etc Keymap : US-International : Brazilian ; 322 322 323 323 local timezones = [ FTimeZoneBinaries $(HAIKU_TIME_ZONE_SOURCES) : : true ] ; 324 324 for timezone in $(timezones) { 325 325 local dir = [ on $(timezone) return $(RELATIVE_TIMEZONE_DIR) ] ; 326 AddFilesToHaikuImage beosetc timezones $(dir) : $(timezone) ;326 AddFilesToHaikuImage haiku etc timezones $(dir) : $(timezone) ; 327 327 } 328 328 329 329 local driverSettingsFiles = <driver-settings>kernel ; … … 342 342 AddFilesToHaikuImage home config settings : <settings>fresh_install ; 343 343 344 344 # boot loader 345 AddFilesToHaikuImage beossystem : zbeos ;345 AddFilesToHaikuImage haiku system : zbeos ; 346 346 347 347 # boot module links 348 348 AddBootModuleSymlinksToHaikuImage … … 356 356 ; 357 357 358 358 # add-ons 359 AddFilesToHaikuImage beossystem add-ons accelerants359 AddFilesToHaikuImage haiku system add-ons accelerants 360 360 : $(BEOS_ADD_ONS_ACCELERANTS) ; 361 AddFilesToHaikuImage beossystem add-ons opengl361 AddFilesToHaikuImage haiku system add-ons opengl 362 362 : $(X86_ONLY)Mesa\ Software\ Renderer ; 363 AddFilesToHaikuImage beossystem add-ons Translators363 AddFilesToHaikuImage haiku system add-ons Translators 364 364 : $(BEOS_ADD_ONS_TRANSLATORS) ; 365 AddFilesToHaikuImage beossystem add-ons mail_daemon inbound_protocols : POP3 IMAP ;366 AddFilesToHaikuImage beossystem add-ons mail_daemon outbound_protocols : SMTP ;367 AddFilesToHaikuImage beossystem add-ons mail_daemon inbound_filters : Match\ Header Spam\ Filter R5\ Daemon\ Filter ;368 AddFilesToHaikuImage beossystem add-ons mail_daemon outbound_filters : Fortune ;369 AddFilesToHaikuImage beossystem add-ons mail_daemon system_filters : Inbox New\ Mail\ Notification Outbox Message\ Parser ;370 AddFilesToHaikuImage beossystem add-ons media : $(BEOS_ADD_ONS_MEDIA) ;371 AddFilesToHaikuImage beossystem add-ons media plugins365 AddFilesToHaikuImage haiku system add-ons mail_daemon inbound_protocols : POP3 IMAP ; 366 AddFilesToHaikuImage haiku system add-ons mail_daemon outbound_protocols : SMTP ; 367 AddFilesToHaikuImage haiku system add-ons mail_daemon inbound_filters : Match\ Header Spam\ Filter R5\ Daemon\ Filter ; 368 AddFilesToHaikuImage haiku system add-ons mail_daemon outbound_filters : Fortune ; 369 AddFilesToHaikuImage haiku system add-ons mail_daemon system_filters : Inbox New\ Mail\ Notification Outbox Message\ Parser ; 370 AddFilesToHaikuImage haiku system add-ons media : $(BEOS_ADD_ONS_MEDIA) ; 371 AddFilesToHaikuImage haiku system add-ons media plugins 372 372 : $(BEOS_ADD_ONS_MEDIA_PLUGINS) ; 373 AddFilesToHaikuImage beossystem add-ons Tracker : FileType-F ZipOMatic-Z ;374 AddSymlinkToHaikuImage beossystem add-ons Tracker375 : /boot/ beos/preferences/Backgrounds : Background-B ;376 AddFilesToHaikuImage beossystem add-ons input_server devices373 AddFilesToHaikuImage haiku system add-ons Tracker : FileType-F ZipOMatic-Z ; 374 AddSymlinkToHaikuImage haiku system add-ons Tracker 375 : /boot/haiku/preferences/Backgrounds : Background-B ; 376 AddFilesToHaikuImage haiku system add-ons input_server devices 377 377 : <input>keyboard <input>mouse <input>wacom ; 378 AddFilesToHaikuImage beossystem add-ons input_server filters : screen_saver ;379 AddFilesToHaikuImage beossystem add-ons kernel network : stack ;380 AddFilesToHaikuImage beossystem add-ons kernel network devices378 AddFilesToHaikuImage haiku system add-ons input_server filters : screen_saver ; 379 AddFilesToHaikuImage haiku system add-ons kernel network : stack ; 380 AddFilesToHaikuImage haiku system add-ons kernel network devices 381 381 : $(BEOS_NETWORK_DEVICES) ; 382 AddFilesToHaikuImage beossystem add-ons kernel network datalink_protocols382 AddFilesToHaikuImage haiku system add-ons kernel network datalink_protocols 383 383 : $(BEOS_NETWORK_DATALINK_PROTOCOLS) ; 384 AddFilesToHaikuImage beossystem add-ons kernel network ppp384 AddFilesToHaikuImage haiku system add-ons kernel network ppp 385 385 : $(BEOS_NETWORK_PPP) ; 386 AddFilesToHaikuImage beossystem add-ons kernel network protocols386 AddFilesToHaikuImage haiku system add-ons kernel network protocols 387 387 : $(BEOS_NETWORK_PROTOCOLS) ; 388 AddFilesToHaikuImage beossystem add-ons Print : $(BEOS_ADD_ONS_PRINT) ;389 AddFilesToHaikuImage beossystem add-ons Print transport388 AddFilesToHaikuImage haiku system add-ons Print : $(BEOS_ADD_ONS_PRINT) ; 389 AddFilesToHaikuImage haiku system add-ons Print transport 390 390 : $(BEOS_ADD_ONS_PRINT_TRANSPORT) ; 391 AddFilesToHaikuImage beossystem add-ons Screen\ Savers391 AddFilesToHaikuImage haiku system add-ons Screen\ Savers 392 392 : $(BEOS_ADD_ONS_SCREENSAVERS) ; 393 393 394 AddFilesToHaikuImage beossystem add-ons disk_systems394 AddFilesToHaikuImage haiku system add-ons disk_systems 395 395 : <disk_system>intel <disk_system>bfs ; 396 396 397 397 AddDirectoryToHaikuImage home config add-ons Tracker ; 398 398 AddDirectoryToHaikuImage home config add-ons Screen\ Savers ; 399 399 AddDirectoryToHaikuImage home config add-ons Translators ; 400 AddDirectoryToHaikuImage beosetc synth ;401 AddDirectoryToHaikuImage beossystem add-ons input_server methods ;400 AddDirectoryToHaikuImage haiku etc synth ; 401 AddDirectoryToHaikuImage haiku system add-ons input_server methods ; 402 402 403 403 # optional 404 AddFilesToHaikuImage optional beossystem add-ons input_server methods : canna ;404 AddFilesToHaikuImage optional haiku system add-ons input_server methods : canna ; 405 405 406 406 # printers 407 407 AddDirectoryToHaikuImage home config settings printers Preview … … 410 410 : home-config-settings-printers-save-as-pdf.rdef ; 411 411 412 412 # licenses 413 CopyDirectoryToHaikuImage beosetc413 CopyDirectoryToHaikuImage haiku etc 414 414 : [ FDirName $(HAIKU_TOP) data etc licenses ] 415 415 : licenses : -x .svn ; 416 416 -
build/jam/UserBuildConfig.sample
19 19 20 20 # Add symlink/file (timezone and keymap settings) to the image. 21 21 #AddSymlinkToHaikuImage home config settings 22 # : /boot/ beos/etc/timezones/Europe/Paris : timezone ;22 # : /boot/haiku/etc/timezones/Europe/Paris : timezone ; 23 23 #AddFilesToHaikuImage home config settings : <keymap>US-International 24 24 # : Key_map ; 25 25 -
build/jam/PackageRules
214 214 unzip -od / install.zip 215 215 alert "Finished installing" "Thanks" 216 216 else 217 if [ -e /boot/ beos/apps/Terminal ]217 if [ -e /boot/haiku/apps/Terminal ] 218 218 then 219 terminal=/boot/ beos/apps/Terminal219 terminal=/boot/haiku/apps/Terminal 220 220 else 221 221 terminal=`query Terminal | head -1` 222 222 fi -
build/jam/NetBootArchive
32 32 33 33 34 34 # modules 35 AddFilesToNetBootArchive beossystem add-ons kernel bus_managers35 AddFilesToNetBootArchive haiku system add-ons kernel bus_managers 36 36 : $(BEOS_ADD_ONS_BUS_MANAGERS) ; 37 AddFilesToNetBootArchive beossystem add-ons kernel busses agp_gart37 AddFilesToNetBootArchive haiku system add-ons kernel busses agp_gart 38 38 : $(X86_ONLY)<agp_gart>intel ; 39 AddFilesToNetBootArchive beossystem add-ons kernel busses ide39 AddFilesToNetBootArchive haiku system add-ons kernel busses ide 40 40 : ahci generic_ide_pci $(X86_ONLY)ide_isa silicon_image_3112 ; 41 AddFilesToNetBootArchive beossystem add-ons kernel console : vga_text ;42 AddFilesToNetBootArchive beossystem add-ons kernel file_systems41 AddFilesToNetBootArchive haiku system add-ons kernel console : vga_text ; 42 AddFilesToNetBootArchive haiku system add-ons kernel file_systems 43 43 : $(BEOS_ADD_ONS_FILE_SYSTEMS) ; 44 AddFilesToNetBootArchive beossystem add-ons kernel generic44 AddFilesToNetBootArchive haiku system add-ons kernel generic 45 45 : block_io fast_log ide_adapter locked_pool scsi_periph ; 46 AddFilesToNetBootArchive beossystem add-ons kernel partitioning_systems46 AddFilesToNetBootArchive haiku system add-ons kernel partitioning_systems 47 47 : intel session ; 48 AddFilesToNetBootArchive beossystem add-ons kernel interrupt_controllers48 AddFilesToNetBootArchive haiku system add-ons kernel interrupt_controllers 49 49 : $(PPC_ONLY)openpic ; 50 50 51 51 if $(TARGET_ARCH) = x86 { 52 AddFilesToNetBootArchive beossystem add-ons kernel cpu : generic_x86 ;52 AddFilesToNetBootArchive haiku system add-ons kernel cpu : generic_x86 ; 53 53 } 54 54 55 55 # drivers … … 59 59 AddDriversToNetBootArchive net : $(BEOS_ADD_ONS_DRIVERS_NET) ; 60 60 61 61 # kernel 62 AddFilesToNetBootArchive beossystem : <revisioned>kernel_$(TARGET_ARCH) ;62 AddFilesToNetBootArchive haiku system : <revisioned>kernel_$(TARGET_ARCH) ; 63 63 64 64 # scripts and data files 65 65 … … 70 70 : $(driverSettingsFiles) ; 71 71 72 72 # add-ons 73 AddFilesToNetBootArchive beossystem add-ons kernel network73 AddFilesToNetBootArchive haiku system add-ons kernel network 74 74 : stack ; 75 AddFilesToNetBootArchive beossystem add-ons kernel network devices75 AddFilesToNetBootArchive haiku system add-ons kernel network devices 76 76 : $(BEOS_NETWORK_DEVICES) ; 77 AddFilesToNetBootArchive beossystem add-ons kernel network datalink_protocols77 AddFilesToNetBootArchive haiku system add-ons kernel network datalink_protocols 78 78 : $(BEOS_NETWORK_DATALINK_PROTOCOLS) ; 79 AddFilesToNetBootArchive beossystem add-ons kernel network ppp79 AddFilesToNetBootArchive haiku system add-ons kernel network ppp 80 80 : $(BEOS_NETWORK_PPP) ; 81 AddFilesToNetBootArchive beossystem add-ons kernel network protocols81 AddFilesToNetBootArchive haiku system add-ons kernel network protocols 82 82 : $(BEOS_NETWORK_PROTOCOLS) ; 83 83 84 84 # boot module links -
build/scripts/build_haiku_image
198 198 $rmAttrs -f $copyrightAttrs 199 199 touch $copyrightAttrs 200 200 $addattr -f $copyrightsFile COPYRIGHTS $copyrightAttrs 201 $copyAttrs ${sPrefix}$copyrightAttrs ${tPrefix} beos/apps/AboutSystem201 $copyAttrs ${sPrefix}$copyrightAttrs ${tPrefix}haiku/apps/AboutSystem 202 202 fi 203 203 fi 204 204 -
data/system/boot/SetupEnvironment
44 44 45 45 if [ "$SAFEMODE" != "yes" ] 46 46 then 47 export PATH=.:$HOME/config/bin:/boot/common/bin:/bin:/boot/apps:/boot/preferences:/boot/ beos/apps:/boot/beos/preferences:$BETOOLS48 export LIBRARY_PATH="%A/lib:$HOME/config/lib:/boot/common/lib:/boot/ beos/system/lib"49 export ADDON_PATH="%A/add-ons:$HOME/config/add-ons:/boot/ beos/system/add-ons"47 export PATH=.:$HOME/config/bin:/boot/common/bin:/bin:/boot/apps:/boot/preferences:/boot/haiku/apps:/boot/haiku/preferences:$BETOOLS 48 export LIBRARY_PATH="%A/lib:$HOME/config/lib:/boot/common/lib:/boot/haiku/system/lib" 49 export ADDON_PATH="%A/add-ons:$HOME/config/add-ons:/boot/haiku/system/add-ons" 50 50 else 51 export PATH=.:/boot/common/bin:/bin:/boot/apps:/boot/preferences:/boot/ beos/apps:/boot/beos/preferences:$BETOOLS52 export LIBRARY_PATH="%A/lib:/boot/common/lib:/boot/ beos/system/lib"53 export ADDON_PATH="%A/add-ons:/boot/ beos/system/add-ons"51 export PATH=.:/boot/common/bin:/bin:/boot/apps:/boot/preferences:/boot/haiku/apps:/boot/haiku/preferences:$BETOOLS 52 export LIBRARY_PATH="%A/lib:/boot/common/lib:/boot/haiku/system/lib" 53 export ADDON_PATH="%A/add-ons:/boot/haiku/system/add-ons" 54 54 fi 55 55 56 56 # media kit -
data/system/boot/Bootscript
54 54 exec >/dev/null 2>&1 55 55 56 56 # Standard locations of boot files 57 SCRIPTS= beos/system/boot58 SERVERS= beos/system/servers57 SCRIPTS=haiku/system/boot 58 SERVERS=haiku/system/servers 59 59 60 60 # Set up the environment 61 61 … … 71 71 fi 72 72 73 73 # Sets timezone etc. 74 runprog beos/bin/clockconfig74 runprog haiku/bin/clockconfig 75 75 76 76 # Launch servers 77 77 … … 99 99 # Launch Terminal or consoled depending on $SAFEMODE 100 100 if [ "$SAFEMODE" != "yes" ]; then 101 101 if [ -e /etc/users ]; then 102 launch beos/system/Login102 launch haiku/system/Login 103 103 # nothing more 104 104 else 105 launch beos/system/Tracker106 launch beos/system/Deskbar105 launch haiku/system/Tracker 106 launch haiku/system/Deskbar 107 107 108 108 # install ProcessController in the deskbar 109 (sleep 7; /boot/ beos/apps/ProcessController -deskbar) &109 (sleep 7; /boot/haiku/apps/ProcessController -deskbar) & 110 110 fi 111 launch beos/apps/Terminal111 launch haiku/apps/Terminal 112 112 else 113 launch beos/bin/consoled113 launch haiku/bin/consoled 114 114 fi 115 115 116 116 if [ "$SAFEMODE" != "yes" ]; then … … 129 129 fi 130 130 131 131 # Check for daily saving time 132 launch beos/bin/dstcheck132 launch haiku/bin/dstcheck 133 133 134 134 if [ "$SAFEMODE" != "yes" ]; then 135 135 # Start user boot script … … 141 141 # Check for fresh install and register all bundled app mimetypes 142 142 FRESH_INSTALL_INDICATOR_FILE=$HOME/config/settings/fresh_install 143 143 if [ -e $FRESH_INSTALL_INDICATOR_FILE ]; then 144 # mimeset -all -f /boot/ beos/apps145 # mimeset -all -f /boot/ beos/preferences146 # mimeset -all -f /boot/ beos/system/servers144 # mimeset -all -f /boot/haiku/apps 145 # mimeset -all -f /boot/haiku/preferences 146 # mimeset -all -f /boot/haiku/system/servers 147 147 # mimeset -all -f /boot/apps 148 148 rm $FRESH_INSTALL_INDICATOR_FILE 149 149 fi -
data/system/boot/Bootscript.cd
72 72 73 73 # Launch Terminal or consoled depending on $SAFEMODE 74 74 if [ "$SAFEMODE" != "yes" ]; then 75 if [ -x /boot/ beos/apps/Installer ]; then76 /boot/ beos/apps/Installer77 #/boot/ beos/apps/Terminal -x /boot/beos/apps/Installer75 if [ -x /boot/haiku/apps/Installer ]; then 76 /boot/haiku/apps/Installer 77 #/boot/haiku/apps/Terminal -x /boot/haiku/apps/Installer 78 78 else 79 /boot/ beos/apps/Terminal79 /boot/haiku/apps/Terminal 80 80 fi 81 #launch beos/apps/Terminal81 #launch haiku/apps/Terminal 82 82 else 83 launch beos/bin/consoled83 launch haiku/bin/consoled 84 84 fi 85 85 86 86 # sync disks -
src/preferences/network_old/NetworkWindow.cpp
346 346 argc = 1; 347 347 arg_v = (const char **)malloc(sizeof(char *) * (argc + 1)); 348 348 349 arg_v[0] = strdup("/boot/ beos/system/servers/net_server");349 arg_v[0] = strdup("/boot/haiku/system/servers/net_server"); 350 350 arg_v[1] = NULL; 351 351 352 352 thread = load_image(argc,arg_v,(const char **)environ); -
src/preferences/time/ZoneView.cpp
360 360 tzLink.SetTo(path.Path(), true); 361 361 362 362 if (tzLink.InitCheck() != B_OK) {// link is broken 363 tzLink.SetTo("/boot/ beos/etc/timezones/Pacific/fiji");363 tzLink.SetTo("/boot/haiku/etc/timezones/Pacific/fiji"); 364 364 // do something like set to a default GMT??? 365 365 } 366 366 } else { 367 367 // set tzlink to a default 368 tzLink.SetTo("/boot/ beos/etc/timezones/EST");368 tzLink.SetTo("/boot/haiku/etc/timezones/EST"); 369 369 } 370 370 #endif 371 371 // we need something in the current zone -
src/preferences/sounds/HWindow.cpp
330 330 menu->AddItem(new BMenuItem(path.Leaf(), msg), 0); 331 331 } 332 332 333 BPath path("/boot/ beos/etc/sounds");333 BPath path("/boot/haiku/etc/sounds"); 334 334 status_t err = B_OK; 335 335 BDirectory dir( path.Path() ); 336 336 BEntry entry; -
src/tests/add-ons/kernel/kernelland_emu.cpp
32 32 //#define TRACE(x) printf x 33 33 34 34 static const char *gModuleDirs[] = { 35 "distro/x86.R1/ beos/system/add-ons/userland",35 "distro/x86.R1/haiku/system/add-ons/userland", 36 36 NULL 37 37 }; 38 38 -
src/tests/servers/registrar/run_haiku_registrar.cpp
26 26 team_info teamInfo; 27 27 int32 cookie = 0; 28 28 while (get_next_team_info(&cookie, &teamInfo) == B_OK) { 29 if (!strncmp(teamInfo.args, "/boot/ beos/", 11)) {29 if (!strncmp(teamInfo.args, "/boot/haiku/", 11)) { 30 30 // this is a system component and not worth to investigate 31 31 continue; 32 32 } -
src/tests/kits/app/bmessage/MessageRefItemTest.h
122 122 static entry_ref Test1() 123 123 { 124 124 entry_ref ref; 125 get_ref_for_path("/boot/ beos/apps/camera", &ref);125 get_ref_for_path("/boot/haiku/apps/camera", &ref); 126 126 return ref; 127 127 } 128 128 static entry_ref Test2() -
src/tests/kits/interface/WidthBufferTest.cpp
64 64 int32 65 65 App::TesterFunc() 66 66 { 67 FILE *file = fopen("/boot/ beos/etc/termcap", "r");67 FILE *file = fopen("/boot/haiku/etc/termcap", "r"); 68 68 if (file != NULL) { 69 69 char buffer[512]; 70 70 while (fgets(buffer, 512, file)) { -
src/tests/kits/interface/picture/PictureTest.cpp
7 7 8 8 #include "SVGViewView.h" 9 9 10 class Svg2PictureWindow : public BWindow { 11 public: 12 Svg2PictureWindow(BRect frame, const char *filename) 13 : BWindow(frame, "Svg2Picture", B_TITLED_WINDOW, 0) { 14 15 BView *view = new Svg2PictureView(Bounds(), filename); 16 AddChild(view); 17 } 10 class Svg2PictureWindow : public BWindow { 11 public: 12 Svg2PictureWindow(BRect frame, const char *filename) 13 : BWindow(frame, "Svg2Picture", B_TITLED_WINDOW, 0) { 14 15 BView *view = new Svg2PictureView(Bounds(), filename); 16 AddChild(view); 17 } 18 18 }; 19 19 20 20 class OriginalView : public BBox { … … 154 154 "BPicture test", B_TITLED_WINDOW, 155 155 B_NOT_RESIZABLE|B_NOT_ZOOMABLE|B_QUIT_ON_WINDOW_CLOSE); 156 156 157 BWindow *svgWindow = new Svg2PictureWindow(BRect(300, 300, 600, 600), "/boot/ beos/etc/artwork/lion.svg");157 BWindow *svgWindow = new Svg2PictureWindow(BRect(300, 300, 600, 600), "/boot/haiku/etc/artwork/lion.svg"); 158 158 159 159 160 160 BRect rect(pictureWindow->Bounds()); -
src/tests/kits/midi/midi_player_replacement/MidiPlayerView.h
54 54 //-------------- 55 55 //-------------- 56 56 //-------------- 57 #define BEOS_SYNTH_DIRECTORY "/boot/ beos/etc/synth/"57 #define BEOS_SYNTH_DIRECTORY "/boot/haiku/etc/synth/" 58 58 //-------------- 59 59 60 60 //---------------------------------------------------------- -
src/tests/kits/storage/FindDirectoryTest.cpp
180 180 } 181 181 // BeOS directories. These are mostly accessed read-only. 182 182 case B_BEOS_DIRECTORY: 183 error = path.SetTo("/boot/ beos");183 error = path.SetTo("/boot/haiku"); 184 184 break; 185 185 case B_BEOS_SYSTEM_DIRECTORY: 186 error = path.SetTo("/boot/ beos/system");186 error = path.SetTo("/boot/haiku/system"); 187 187 break; 188 188 case B_BEOS_ADDONS_DIRECTORY: 189 error = path.SetTo("/boot/ beos/system/add-ons");189 error = path.SetTo("/boot/haiku/system/add-ons"); 190 190 break; 191 191 case B_BEOS_BOOT_DIRECTORY: 192 error = path.SetTo("/boot/ beos/system/boot");192 error = path.SetTo("/boot/haiku/system/boot"); 193 193 break; 194 194 case B_BEOS_FONTS_DIRECTORY: 195 error = path.SetTo("/boot/ beos/etc/fonts");195 error = path.SetTo("/boot/haiku/etc/fonts"); 196 196 break; 197 197 case B_BEOS_LIB_DIRECTORY: 198 error = path.SetTo("/boot/ beos/system/lib");198 error = path.SetTo("/boot/haiku/system/lib"); 199 199 break; 200 200 case B_BEOS_SERVERS_DIRECTORY: 201 error = path.SetTo("/boot/ beos/system/servers");201 error = path.SetTo("/boot/haiku/system/servers"); 202 202 break; 203 203 case B_BEOS_APPS_DIRECTORY: 204 error = path.SetTo("/boot/ beos/apps");204 error = path.SetTo("/boot/haiku/apps"); 205 205 break; 206 206 case B_BEOS_BIN_DIRECTORY: 207 error = path.SetTo("/boot/ beos/bin");207 error = path.SetTo("/boot/haiku/bin"); 208 208 break; 209 209 case B_BEOS_ETC_DIRECTORY: 210 error = path.SetTo("/boot/ beos/etc");210 error = path.SetTo("/boot/haiku/etc"); 211 211 break; 212 212 case B_BEOS_DOCUMENTATION_DIRECTORY: 213 error = path.SetTo("/boot/ beos/documentation");213 error = path.SetTo("/boot/haiku/documentation"); 214 214 break; 215 215 case B_BEOS_PREFERENCES_DIRECTORY: 216 error = path.SetTo("/boot/ beos/preferences");216 error = path.SetTo("/boot/haiku/preferences"); 217 217 break; 218 218 case B_BEOS_TRANSLATORS_DIRECTORY: 219 error = path.SetTo("/boot/ beos/system/add-ons/Translators");219 error = path.SetTo("/boot/haiku/system/add-ons/Translators"); 220 220 break; 221 221 case B_BEOS_MEDIA_NODES_DIRECTORY: 222 error = path.SetTo("/boot/ beos/system/add-ons/media");222 error = path.SetTo("/boot/haiku/system/add-ons/media"); 223 223 break; 224 224 case B_BEOS_SOUNDS_DIRECTORY: 225 error = path.SetTo("/boot/ beos/etc/sounds");225 error = path.SetTo("/boot/haiku/etc/sounds"); 226 226 break; 227 227 // Common directories, shared among all users. 228 228 case B_COMMON_DIRECTORY: -
src/tests/kits/storage/MimeTypeTest.cpp
66 66 static const char *applicationSupertype = "application"; 67 67 68 68 // Application Paths 69 static const char *testApp = "/boot/ beos/apps/SoundRecorder";70 static const char *testApp2 = "/boot/ beos/apps/CDPlayer";69 static const char *testApp = "/boot/haiku/apps/SoundRecorder"; 70 static const char *testApp2 = "/boot/haiku/apps/CDPlayer"; 71 71 static const char *fakeTestApp = "/__this_isn't_likely_to_exist__"; 72 72 73 73 // BMessage field names … … 3236 3236 B_MINI_ICON) == B_OK); 3237 3237 // app hint 3238 3238 entry_ref appHintRef; 3239 CHK(get_ref_for_path("/boot/ beos/apps/StyledEdit", &appHintRef) == B_OK);3239 CHK(get_ref_for_path("/boot/haiku/apps/StyledEdit", &appHintRef) == B_OK); 3240 3240 CHK(type.SetAppHint(&appHintRef) == B_OK); 3241 3241 // sniffer rule 3242 3242 const char *snifferRule = "0.5 [0:0] ('ARGH')"; … … 3334 3334 B_MINI_ICON) == B_OK); 3335 3335 // app hint 3336 3336 entry_ref appHintRef2; 3337 CHK(get_ref_for_path("/boot/ beos/apps/NetPositive", &appHintRef2) == B_OK);3337 CHK(get_ref_for_path("/boot/haiku/apps/NetPositive", &appHintRef2) == B_OK); 3338 3338 CHK(type.SetAppHint(&appHintRef2) == B_OK); 3339 3339 // sniffer rule 3340 3340 const char *snifferRule2 = "0.7 [0:5] ('YEAH!')"; -
src/tests/kits/storage/DirectoryTest.cpp
619 619 CPPUNIT_ASSERT( dir.IsRootDirectory() == true ); 620 620 // 621 621 NextSubTest(); 622 CPPUNIT_ASSERT( dir.SetTo("/boot/ beos") == B_OK );622 CPPUNIT_ASSERT( dir.SetTo("/boot/haiku") == B_OK ); 623 623 CPPUNIT_ASSERT( dir.InitCheck() == B_OK ); 624 624 CPPUNIT_ASSERT( dir.IsRootDirectory() == false ); 625 625 // -
src/tests/kits/translation/TranslationUtilsTest.cpp
357 357 BTranslatorRoster *proster = new BTranslatorRoster(); 358 358 CPPUNIT_ASSERT(proster); 359 359 CPPUNIT_ASSERT(proster->AddTranslators( 360 "/boot/ beos/system/add-ons/Translators/PPMTranslator") == B_OK);360 "/boot/haiku/system/add-ons/Translators/PPMTranslator") == B_OK); 361 361 CPPUNIT_ASSERT(BTranslationUtils::AddTranslationItems(pmenu, 362 362 B_TRANSLATOR_BITMAP, NULL, NULL, NULL, proster) == B_OK); 363 363 CPPUNIT_ASSERT(pmenu->CountItems() == 1); -
src/apps/processcontroller/PCWorld.cpp
150 150 } while (be_roster->IsRunning(kTrackerSig) && k-- > 0); 151 151 } 152 152 remove("/boot/home/config/settings/Tracker/tracker_shelf"); 153 launch(kTrackerSig, "/boot/ beos/system/Tracker");153 launch(kTrackerSig, "/boot/haiku/system/Tracker"); 154 154 } else if (argc == 2 && strcmp(argv[1], "-deskbar") == 0) { 155 155 BDeskbar deskbar; 156 156 if (!gInDeskbar && !deskbar.HasItem(kDeskbarItemName)) -
src/apps/processcontroller/ProcessController.cpp
311 311 break; 312 312 313 313 case 'Trac': 314 launch(kTrackerSig, "/boot/ beos/system/Tracker");314 launch(kTrackerSig, "/boot/haiku/system/Tracker"); 315 315 break; 316 316 317 317 case 'Dbar': 318 launch(kDeskbarSig, "/boot/ beos/system/Deskbar");318 launch(kDeskbarSig, "/boot/haiku/system/Deskbar"); 319 319 break; 320 320 321 321 case 'Term': 322 launch(kTerminalSig, "/boot/ beos/apps/Terminal");322 launch(kTerminalSig, "/boot/haiku/apps/Terminal"); 323 323 break; 324 324 325 325 case 'AlDb': 326 326 { 327 327 if (!be_roster->IsRunning(kDeskbarSig)) 328 launch(kDeskbarSig, "/boot/ beos/system/Deskbar");328 launch(kDeskbarSig, "/boot/haiku/system/Deskbar"); 329 329 BDeskbar deskbar; 330 330 if (gInDeskbar || deskbar.HasItem (kDeskbarItemName)) 331 331 deskbar.RemoveItem (kDeskbarItemName); -
src/apps/mediaconverter/MediaConverterWindow.cpp
343 343 344 344 BString string, string2; 345 345 346 BEntry entry("/boot/ beos/apps/MediaPlayer", true);346 BEntry entry("/boot/haiku/apps/MediaPlayer", true); 347 347 char buffer[40]; 348 348 char buffer2[B_PATH_NAME_LENGTH]; 349 349 char *argv[3]; -
src/apps/installer/FSUtils.cpp
467 467 bool requireOverride = true; 468 468 469 469 if (DirectoryMatches(entry, B_BEOS_DIRECTORY)) 470 warning = "If you %s the beosfolder, you won't be able to "470 warning = "If you %s the haiku folder, you won't be able to " 471 471 "boot " OS_NAME "! Are you sure you want to do this? To %s the folder " 472 472 "anyway, hold down the Shift key and click \"Do it\"."; 473 473 else if (DirectoryMatchesOrContains(entry, B_BEOS_SYSTEM_DIRECTORY)) … … 3312 3312 3313 3313 WellKnowEntryList::WellKnowEntryList() 3314 3314 { 3315 AddOne(B_BEOS_DIRECTORY, " beos");3315 AddOne(B_BEOS_DIRECTORY, "haiku"); 3316 3316 AddOne((directory_which)B_BOOT_DISK, "/boot", "boot"); 3317 3317 AddOne(B_USER_DIRECTORY, "home"); 3318 3318 AddOne(B_BEOS_SYSTEM_DIRECTORY, "system"); -
src/system/kernel/device_manager/device_manager_private.h
23 23 24 24 // driver registration directories 25 25 #define PNP_DIR 26 #define SYSTEM_DRIVER_REGISTRATION "/boot/ beos/system/add-ons/kernel/"PNP_DIR"registration/"26 #define SYSTEM_DRIVER_REGISTRATION "/boot/haiku/system/add-ons/kernel/"PNP_DIR"registration/" 27 27 #define COMMON_DRIVER_REGISTRATION "/boot/home/config/add-ons/kernel/"PNP_DIR"registration/" 28 28 29 29 // info about ID generator -
src/system/kernel/module.cpp
958 958 image->name)) != NULL) { 959 959 // even if strlcpy() is used here, it's by no means safe 960 960 // against buffer overflows 961 size_t length = strlcpy(path, "/boot/ beos/system/add-ons/kernel/",961 size_t length = strlcpy(path, "/boot/haiku/system/add-ons/kernel/", 962 962 sizeof(path)); 963 963 strlcpy(path + length, name, strlen(image->name) 964 964 + 1 + (suffix - name)); -
src/system/kernel/fs/devfs.cpp
493 493 get_priority(const char *path) 494 494 { 495 495 // TODO: use find_directory() 496 const char *kPaths[] = {"/boot/ beos", "/boot/common", "/boot/home", NULL};496 const char *kPaths[] = {"/boot/haiku", "/boot/common", "/boot/home", NULL}; 497 497 498 498 for (int32 i = 0; kPaths[i] != NULL; i++) { 499 499 if (!strncmp(kPaths[i], path, strlen(kPaths[i]))) … … 2839 2839 if (!image->is_module && image->id >= 0) { 2840 2840 // fake an absolute path 2841 2841 char path[B_PATH_NAME_LENGTH]; 2842 strlcpy(path, "/boot/ beos/system/add-ons/kernel/", sizeof(path));2842 strlcpy(path, "/boot/haiku/system/add-ons/kernel/", sizeof(path)); 2843 2843 strlcat(path, image->name, sizeof(path)); 2844 2844 2845 2845 // try to add the driver -
src/system/kernel/fs/vfs_boot.cpp
44 44 const char *path; 45 45 const char *target; 46 46 } sPredefinedLinks[] = { 47 {"/system", "/boot/ beos/system"},48 {"/bin", "/boot/ beos/bin"},49 {"/etc", "/boot/ beos/etc"},47 {"/system", "/boot/haiku/system"}, 48 {"/bin", "/boot/haiku/bin"}, 49 {"/etc", "/boot/haiku/etc"}, 50 50 {"/var", "/boot/var"}, 51 51 {"/tmp", "/boot/var/tmp"}, 52 52 {NULL} -
src/system/kernel/vm/vm_tests.c
198 198 // char *blah; 199 199 int fd; 200 200 201 fd = _kern_open("/boot/ beos/system/kernel_" OBOS_ARCH, 0);201 fd = _kern_open("/boot/haiku/system/kernel_" OBOS_ARCH, 0); 202 202 203 203 rid = vm_map_file(vm_kernel_address_space_id(), "mmap_test", &ptr, B_ANY_KERNEL_ADDRESS, 204 204 B_PAGE_SIZE, B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA, REGION_NO_PRIVATE_MAP, "/boot/kernel", 0); -
src/system/kernel/main.c
288 288 289 289 // start the init process 290 290 { 291 const char *args[] = {"/bin/sh", "/boot/ beos/system/boot/Bootscript",291 const char *args[] = {"/bin/sh", "/boot/haiku/system/boot/Bootscript", 292 292 NULL}; 293 293 int32 argc = 2; 294 294 thread_id thread; -
src/system/kernel/team.cpp
1117 1117 // the arguments are already on the user stack, we no longer need them in this form 1118 1118 1119 1119 // ToDo: don't use fixed paths! 1120 err = elf_load_user_image("/boot/ beos/system/runtime_loader", team, 0, &entry);1120 err = elf_load_user_image("/boot/haiku/system/runtime_loader", team, 0, &entry); 1121 1121 if (err < B_OK) { 1122 1122 // Luckily, we don't have to clean up the mess we created - that's 1123 1123 // done for us by the normal team deletion process -
src/system/boot/platform/bios_ia32/stage1.S
5 5 ; partitions. The offset of the partition in 512 byte blocks must be written at 6 6 ; position PARTITION_OFFSET_OFFSET (32 bit little endian; makebootable does 7 7 ; that) or otherwise the code can't find the partition. 8 ; The partition must be a BFS formatted. The file " beos/system/zbeos"8 ; The partition must be a BFS formatted. The file "haiku/system/zbeos" 9 9 ; (the stage 2 boot loader) loaded into memory at 0x1000:0x0000 (linear address 10 10 ; 0x10000) and entered at 0x:1000:0x0200 with parameters eax - partition offset 11 11 ; in 512 byte blocks and dl - BIOS ID of the boot drive. … … 639 639 640 640 ; the path to the boot loader 641 641 kPathComponents: 642 pathComponent " beos"642 pathComponent "haiku" 643 643 pathComponent "system" 644 644 pathComponent "zbeos" 645 645 db 0 -
src/system/boot/loader/loader.cpp
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
24 24 #endif 25 25 26 26 #define KERNEL_IMAGE "kernel_" BOOT_ARCH 27 #define KERNEL_PATH " beos/system/" KERNEL_IMAGE27 #define KERNEL_PATH "haiku/system/" KERNEL_IMAGE 28 28 29 29 30 30 static const char *sPaths[] = { 31 " beos/system/add-ons/kernel",31 "haiku/system/add-ons/kernel", 32 32 "home/config/add-ons/kernel", 33 33 NULL 34 34 }; -
src/system/runtime_loader/runtime_loader.c
65 65 ":/bin" 66 66 ":/boot/apps" 67 67 ":/boot/preferences" 68 ":/boot/ beos/apps"69 ":/boot/ beos/preferences"68 ":/boot/haiku/apps" 69 ":/boot/haiku/preferences" 70 70 ":/boot/develop/tools/gnupro/bin"; 71 71 72 72 case B_LIBRARY_IMAGE: 73 73 return "%A/lib" 74 74 ":/boot/home/config/lib" 75 75 // TODO: Remove! 76 ":/boot/common/lib:/boot/ beos/system/lib";76 ":/boot/common/lib:/boot/haiku/system/lib"; 77 77 78 78 case B_ADD_ON_IMAGE: 79 79 return "%A/add-ons" 80 80 ":/boot/home/config/add-ons" 81 81 // TODO: Remove! 82 82 ":/boot/common/add-ons" 83 ":/boot/ beos/system/add-ons";83 ":/boot/haiku/system/add-ons"; 84 84 85 85 default: 86 86 return NULL; -
src/system/libroot/os/find_directory.c
30 30 31 31 /* Haiku system directories */ 32 32 33 /* os root dir; just stick to 'beos' for now */ 34 #define OS "beos" 35 //#define OS "haiku" // :) 36 //#define OS "os" 33 #define OS "haiku" 37 34 38 35 static const char *os_dirs[] = { 39 36 OS, // B_BEOS_DIRECTORY -
src/add-ons/mail_daemon/outbound_filters/fortune/ConfigView.cpp
27 27 28 28 BRect rect(5,4,250,25); 29 29 rect.bottom = rect.top - 2 + itemHeight; 30 BMailFileConfigView *fview = new BMailFileConfigView(MDR_DIALECT_CHOICE ("Fortune File:","予言ファイル:"),"fortune_file",false,"/boot/ beos/etc/fortunes/default",B_FILE_NODE);30 BMailFileConfigView *fview = new BMailFileConfigView(MDR_DIALECT_CHOICE ("Fortune File:","予言ファイル:"),"fortune_file",false,"/boot/haiku/etc/fortunes/default",B_FILE_NODE); 31 31 AddChild(fview); 32 32 33 33 rect.top = rect.bottom + 8; … … 44 44 { 45 45 BString path = archive->FindString("fortune_file"); 46 46 if (path == B_EMPTY_STRING) 47 path = "/boot/ beos/etc/fortunes/default";47 path = "/boot/haiku/etc/fortunes/default"; 48 48 49 49 if (BMailFileConfigView *control = (BMailFileConfigView *)FindView("fortune_file")) 50 50 control->SetTo(archive,NULL); -
src/add-ons/print/drivers/pdf/source/PrinterSetupWindow.cpp
140 140 BDirectory Folder; 141 141 BEntry entry; 142 142 143 Folder.SetTo ("/boot/ beos/etc/bubblejet");143 Folder.SetTo ("/boot/haiku/etc/bubblejet"); 144 144 if (Folder.InitCheck() != B_OK) 145 145 return; 146 146 -
src/bin/make/config.h
2 2 /* config.h. Generated by configure. */ 3 3 /* config.h.in. Generated from configure.in by autoheader. */ 4 4 5 #define LOCALEDIR "/boot/ beos/etc/local/"5 #define LOCALEDIR "/boot/haiku/etc/local/" 6 6 #define LIBDIR "/boot/develop/lib/" 7 7 #define INCLUDEDIR "/boot/develop/headers/" 8 8 -
src/bin/network/wget/src/config.h
251 251 #define HAVE_WORKING_FNMATCH_H 1 252 252 253 253 /* Define to be the name of the operating system. */ 254 #define OS_TYPE " beos"254 #define OS_TYPE "haiku" 255 255 256 256 /* Define to the address where bug reports for this package should be sent. */ 257 257 #define PACKAGE_BUGREPORT "" -
src/bin/desklink/desklink.cpp
165 165 // launch the media player app 166 166 if (LaunchBySig("application/x-vnd.Haiku-MediaPlayer") == B_OK 167 167 || LaunchBySig("application/x-vnd.Be.MediaPlayer") == B_OK 168 || LaunchByPath("/boot/ beos/apps/MediaPlayer") == B_OK)168 || LaunchByPath("/boot/haiku/apps/MediaPlayer") == B_OK) 169 169 break; 170 170 171 171 (new BAlert("desklink", "Couldn't launch MediaPlayer", "OK"))->Go(); -
src/libs/ncurses/include/ncurses_cfg.h
46 46 #ifndef NC_CONFIG_H 47 47 #define NC_CONFIG_H 48 48 49 #define SYSTEM_NAME " beos"49 #define SYSTEM_NAME "haiku" 50 50 #define CC_HAS_PROTOS 1 51 51 #define HAVE_LONG_FILE_NAMES 1 52 52 #define MIXEDCASE_FILENAMES 1 -
src/servers/app/FontManager.cpp
318 318 // TODO: load them for real, and use these as a fallback 319 319 320 320 _AddDefaultMapping("Bitstream Vera Sans", "Roman", 321 "/boot/ beos/etc/fonts/ttfonts/Vera.ttf");321 "/boot/haiku/etc/fonts/ttfonts/Vera.ttf"); 322 322 _AddDefaultMapping("Bitstream Vera Sans", "Bold", 323 "/boot/ beos/etc/fonts/ttfonts/VeraBd.ttf");323 "/boot/haiku/etc/fonts/ttfonts/VeraBd.ttf"); 324 324 _AddDefaultMapping("Bitstream Vera Sans Mono", "Roman", 325 "/boot/ beos/etc/fonts/ttfonts/VeraMono.ttf");325 "/boot/haiku/etc/fonts/ttfonts/VeraMono.ttf"); 326 326 327 327 return false; 328 328 } -
src/servers/debug/DebugServer.cpp
42 42 43 43 // paths to the apps used for debugging 44 44 static const char *kConsoledPath = "/bin/consoled"; 45 static const char *kTerminalPath = "/boot/ beos/apps/Terminal";45 static const char *kTerminalPath = "/boot/haiku/apps/Terminal"; 46 46 static const char *kGDBPath = "/bin/gdb"; 47 47 48 48 -
src/servers/registrar/TRoster.cpp
78 78 79 79 //! Applications living in this tree are considered "vital system apps". 80 80 static const char *const kVitalSystemAppPathPrefix 81 = "/boot/ beos/system/servers";81 = "/boot/haiku/system/servers"; 82 82 83 83 //! Applications living in this tree are considered "system apps". 84 static const char *const kSystemAppPathPrefix = "/boot/ beos/system";84 static const char *const kSystemAppPathPrefix = "/boot/haiku/system"; 85 85 86 86 // get_default_roster_settings_file 87 87 /*! \brief Returns the path to the default roster settings. -
src/kits/media/DormantNodeManager.cpp
33 33 * It handles loading/unloading of dormant nodes. 34 34 * 35 35 * Dormant media nodes can be instantiated on demand. The reside on harddisk in the 36 * directories /boot/ beos/system/add-ons/media and /boot/home/config/add-ons/media36 * directories /boot/haiku/system/add-ons/media and /boot/home/config/add-ons/media 37 37 * Multiple media nodes can be included in one file, they can be accessed using the 38 38 * BMediaAddOn that each file implements. 39 39 * The BMediaAddOn allows getting a list of supported flavors. Each flavor represents -
src/kits/tracker/Tests.cpp
55 55 56 56 const char *pathsToSearch[] = { 57 57 // "/boot/home/config/settings/NetPositive/Bookmarks/", 58 "/boot/ beos",58 "/boot/haiku", 59 59 "/boot/apps", 60 60 "/boot/home", 61 61 0 -
src/kits/tracker/FSUtils.cpp
467 467 bool requireOverride = true; 468 468 469 469 if (DirectoryMatches(entry, B_BEOS_DIRECTORY)) 470 warning = "If you %s the beosfolder, you won't be able to "470 warning = "If you %s the haiku folder, you won't be able to " 471 471 "boot " OS_NAME "! Are you sure you want to do this? To %s the folder " 472 472 "anyway, hold down the Shift key and click \"Do it\"."; 473 473 else if (DirectoryMatchesOrContains(entry, B_BEOS_SYSTEM_DIRECTORY)) … … 3404 3404 3405 3405 WellKnowEntryList::WellKnowEntryList() 3406 3406 { 3407 AddOne(B_BEOS_DIRECTORY, " beos");3407 AddOne(B_BEOS_DIRECTORY, "haiku"); 3408 3408 AddOne((directory_which)B_BOOT_DISK, "/boot", "boot"); 3409 3409 AddOne(B_USER_DIRECTORY, "home"); 3410 3410 AddOne(B_BEOS_SYSTEM_DIRECTORY, "system"); -
src/kits/tracker/TrackerInitialState.cpp
460 460 // make the large Haiku Logo the default background 461 461 462 462 // BPath path; 463 BPath path("/boot/ beos/etc/artwork");463 BPath path("/boot/haiku/etc/artwork"); 464 464 // FSFindTrackerSettingsDir(&path, false); 465 465 // path.Append(kDefaultFolderTemplate); 466 466