2008-03-29 15:18:35 +00:00
|
|
|
# This file defines the optional packages that can be added to the Haiku image.
|
|
|
|
# It is directly included from HaikuImage -- all variables defined there can
|
2013-07-05 10:51:42 +02:00
|
|
|
# be used.
|
2008-11-11 21:47:12 +00:00
|
|
|
|
2008-03-30 20:01:25 +00:00
|
|
|
# Available Optional Packages:
|
2009-12-27 00:13:08 +00:00
|
|
|
# BeOSCompatibility - creates links within the system to support old apps
|
|
|
|
# Bluetooth - experimental Haiku components for Bluetooth
|
|
|
|
# Development - more complete dev environment (including autotools)
|
|
|
|
# DevelopmentBase - basic development environment (gcc, headers, libs,...)
|
2011-02-26 15:33:48 +00:00
|
|
|
# DevelopmentJava - JamVM, a Java Virtual machine, GNU Classpath, ECJ
|
2009-12-27 00:13:08 +00:00
|
|
|
# DevelopmentMin - development headers, libs, tools, from sources only
|
2013-03-12 18:44:01 +01:00
|
|
|
# DevelopmentPowerPC - Cross compiling environment for PowerPC
|
2013-06-13 21:31:44 +02:00
|
|
|
# FFMpeg - audio/video library
|
|
|
|
# FFMpeg-devel - FFMpeg development files
|
2009-12-27 00:13:08 +00:00
|
|
|
# Git - the distributed version control system
|
2010-01-19 18:25:48 +00:00
|
|
|
# NetFS - the native networked file system components
|
2009-12-27 00:13:08 +00:00
|
|
|
# UserlandFS - aids native file system development (like FUSE)
|
2010-04-23 18:06:34 +00:00
|
|
|
# WebPositive - native, WebKit-based web browser
|
2009-12-27 00:13:08 +00:00
|
|
|
# Welcome - introductory documentation to Haiku
|
2010-03-01 21:44:08 +00:00
|
|
|
# WifiFirmwareScriptData - data files needed by install-wifi-firmwares.sh
|
2010-09-16 02:34:38 +00:00
|
|
|
|
|
|
|
|
2013-07-05 10:51:42 +02:00
|
|
|
# dependencies between optional packages
|
|
|
|
OptionalPackageDependencies Development : DevelopmentBase ;
|
|
|
|
OptionalPackageDependencies DevelopmentBase : DevelopmentMin ;
|
|
|
|
OptionalPackageDependencies DevelopmentPowerPC : DevelopmentMin ;
|
|
|
|
OptionalPackageDependencies NetFS : UserlandFS ;
|
2010-03-14 07:19:45 +00:00
|
|
|
|
|
|
|
|
2013-07-05 10:51:42 +02:00
|
|
|
local baseURL = http://haiku-files.org/files/optional-packages ;
|
|
|
|
local hpkgBaseURL = http://haiku-files.org/files/hpkg ;
|
|
|
|
local baseSourceURL = http://haiku-files.org/files/sources ;
|
2008-05-29 10:22:59 +00:00
|
|
|
|
|
|
|
|
2013-06-16 03:54:50 +02:00
|
|
|
# BeBook
|
2008-10-28 02:44:39 +00:00
|
|
|
if [ IsOptionalHaikuImagePackageAdded BeBook ] {
|
2013-09-29 22:09:00 +02:00
|
|
|
AddHaikuImagePackages be_book ;
|
2008-10-28 02:44:39 +00:00
|
|
|
AddSymlinkToHaikuImage home Desktop
|
2013-04-28 23:50:46 +02:00
|
|
|
: /boot/system/documentation/BeBook/index.html
|
2011-06-16 09:00:06 +02:00
|
|
|
: BeBook ;
|
2008-10-28 02:44:39 +00:00
|
|
|
}
|
|
|
|
|
2008-11-11 21:47:12 +00:00
|
|
|
|
2009-04-05 08:57:29 +00:00
|
|
|
# BeOSCompatibility
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded BeOSCompatibility ] {
|
2009-04-20 20:49:09 +00:00
|
|
|
if $(TARGET_ARCH) != x86 {
|
2013-07-05 10:51:42 +02:00
|
|
|
Echo "No optional package BeOSCompatibility available for"
|
|
|
|
"$(TARGET_ARCH)" ;
|
2013-08-01 08:51:16 +02:00
|
|
|
} else if $(TARGET_GCC_VERSION_$(TARGET_PACKAGING_ARCH)[1]) >= 4 {
|
2009-04-20 20:49:09 +00:00
|
|
|
Echo "No optional package BeOSCompatibility available for gcc4" ;
|
|
|
|
} else {
|
2013-07-05 10:51:42 +02:00
|
|
|
Echo "Warning: Adding BeOS compatibility symlinks. This will go away."
|
|
|
|
"Please fix your apps!" ;
|
2009-04-20 20:49:09 +00:00
|
|
|
AddSymlinkToHaikuImage beos : ../system/apps ;
|
|
|
|
AddSymlinkToHaikuImage beos : ../system/bin ;
|
2011-06-16 09:00:06 +02:00
|
|
|
AddSymlinkToHaikuImage beos
|
|
|
|
: ../system/documentation ;
|
2013-09-29 22:09:00 +02:00
|
|
|
AddSymlinkToHaikuImage beos : ../system/settings/etc ;
|
2009-04-20 20:49:09 +00:00
|
|
|
AddSymlinkToHaikuImage beos : ../system/preferences ;
|
|
|
|
AddSymlinkToHaikuImage beos : ../system ;
|
2010-02-05 14:18:20 +00:00
|
|
|
AddDirectoryToHaikuImage var ;
|
2013-09-29 22:09:00 +02:00
|
|
|
AddSymlinkToHaikuImage var : /boot/system/var/log ;
|
|
|
|
AddSymlinkToHaikuImage var : /boot/system/cache/tmp ;
|
2009-04-20 20:49:09 +00:00
|
|
|
}
|
2009-04-05 08:57:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-29 10:22:59 +00:00
|
|
|
# Bluetooth stack
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded Bluetooth ] {
|
2013-07-05 10:51:42 +02:00
|
|
|
# TODO: Make this an actual package!
|
|
|
|
# local bluetoothDrivers = h2generic ;
|
|
|
|
# AddDriversToHaikuImage bluetooth : $(bluetoothDrivers) ;
|
|
|
|
# AddFilesToHaikuImage system servers : bluetooth_server ;
|
|
|
|
# AddFilesToHaikuImage system lib : libbluetooth.so ;
|
|
|
|
# AddFilesToHaikuImage
|
|
|
|
# system add-ons kernel network protocols : l2cap ;
|
|
|
|
# AddFilesToHaikuImage system add-ons kernel bluetooth
|
|
|
|
# : btCoreData hci ;
|
|
|
|
# AddFilesToHaikuImage system preferences : Bluetooth ;
|
|
|
|
# AddFilesToHaikuImage system bin : bt_dev_info bt_discovery ;
|
|
|
|
# AddSymlinkToHaikuImage home config settings deskbar menu Preferences
|
|
|
|
# : /boot/system/preferences/Bluetooth ;
|
|
|
|
# if [ IsOptionalHaikuImagePackageAdded DevelopmentMin ]
|
2013-08-01 08:51:16 +02:00
|
|
|
# && $(TARGET_GCC_VERSION_$(TARGET_PACKAGING_ARCH)[1]) in 2 4 {
|
2013-07-05 10:51:42 +02:00
|
|
|
# local arch = $(TARGET_ARCH) ;
|
2013-08-01 08:51:16 +02:00
|
|
|
# local abi = gcc$(TARGET_GCC_VERSION_$(TARGET_PACKAGING_ARCH)[1]) ;
|
2013-07-05 10:51:42 +02:00
|
|
|
# AddSymlinkToHaikuImage system develop lib
|
|
|
|
# : /system/lib libbluetooth.so ;
|
|
|
|
# }
|
2012-02-20 19:48:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-29 15:18:35 +00:00
|
|
|
# Development
|
2012-08-17 13:03:31 +01:00
|
|
|
if [ IsOptionalHaikuImagePackageAdded Development ] {
|
2013-07-05 10:51:42 +02:00
|
|
|
# auto tools and perl
|
|
|
|
AddHaikuImagePackages autoconf automake libtool perl texinfo ;
|
|
|
|
|
2013-08-17 09:21:06 +02:00
|
|
|
# some other build tools
|
|
|
|
AddHaikuImagePackages cmake pkgconfig scons ;
|
|
|
|
|
2013-07-05 10:51:42 +02:00
|
|
|
# devel packages for mandatory packages
|
2013-08-12 17:23:20 +02:00
|
|
|
local architectureObject ;
|
|
|
|
for architectureObject in [ MultiArchSubDirSetup ] {
|
|
|
|
on $(architectureObject) {
|
2013-09-29 22:09:00 +02:00
|
|
|
AddHaikuImagePackages curl_devel ffmpeg_devel freetype_devel
|
|
|
|
glu_devel jpeg_devel libpng_devel zlib_devel ;
|
2013-08-12 17:23:20 +02:00
|
|
|
}
|
|
|
|
}
|
2009-04-18 21:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# DevelopmentBase
|
2012-08-16 20:32:29 +01:00
|
|
|
if [ IsOptionalHaikuImagePackageAdded DevelopmentBase ] {
|
2013-08-12 17:23:20 +02:00
|
|
|
# gcc and binutils (for all target architectures)
|
|
|
|
local architectureObject ;
|
|
|
|
for architectureObject in [ MultiArchSubDirSetup ] {
|
|
|
|
on $(architectureObject) {
|
|
|
|
AddHaikuImagePackages binutils gcc ;
|
|
|
|
}
|
|
|
|
}
|
2009-04-18 21:26:26 +00:00
|
|
|
|
2013-07-05 10:51:42 +02:00
|
|
|
# other commonly used tools
|
|
|
|
AddHaikuImagePackages bison cdrtools flex jam m4 make mkdepend yasm ;
|
2009-04-18 21:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-02-26 15:33:48 +00:00
|
|
|
# DevelopmentJava
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded DevelopmentJava ] {
|
2013-07-05 10:51:42 +02:00
|
|
|
# TODO: Build actual packages!
|
|
|
|
# InstallOptionalHaikuImagePackage
|
|
|
|
# $(baseURL)/gnu-classpath-0.98-r1a3-x86-gcc4-2011-06-08.zip ;
|
|
|
|
# InstallOptionalHaikuImagePackage
|
|
|
|
# $(baseURL)/jamvm-1.5.4-r1a3-x86-gcc4-2011-06-08.zip ;
|
|
|
|
# AddSymlinkToHaikuImage common bin
|
|
|
|
# : /boot/common/bin/jamvm : java ;
|
|
|
|
# InstallOptionalHaikuImagePackage
|
|
|
|
# $(baseURL)/ecj-3.6.2-haiku-2011-06-08.zip ;
|
2011-02-26 15:33:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-18 21:26:26 +00:00
|
|
|
# DevelopmentMin
|
2012-08-16 20:32:29 +01:00
|
|
|
if [ IsOptionalHaikuImagePackageAdded DevelopmentMin ]
|
|
|
|
&& ( $(TARGET_ARCH) = x86 || $(TARGET_ARCH) = x86_64 ) {
|
2013-08-06 03:33:36 +02:00
|
|
|
AddPackageFilesToHaikuImage system
|
|
|
|
:
|
|
|
|
haiku_devel.hpkg
|
|
|
|
haiku_$(TARGET_PACKAGING_ARCHS[2-])_devel.hpkg
|
2013-09-29 22:09:00 +02:00
|
|
|
makefile_engine.hpkg
|
2013-10-09 03:47:28 +02:00
|
|
|
:
|
|
|
|
nameFromMetaInfo
|
2013-08-06 03:33:36 +02:00
|
|
|
;
|
2008-03-29 15:18:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-18 15:23:26 +01:00
|
|
|
# DevelopmentPowerPC
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded DevelopmentPowerPC ] {
|
2013-07-05 10:51:42 +02:00
|
|
|
# TODO: Build actual packages!
|
|
|
|
# InstallOptionalHaikuImagePackage
|
|
|
|
# $(baseURL)/gcc-ppc-4.6.2-x86-gcc4-2012-03-17.zip ;
|
|
|
|
# InstallOptionalHaikuImagePackage
|
|
|
|
# $(baseURL)/haiku-devlibs-ppc-gcc4-2012-03-18.zip ;
|
2010-09-08 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-13 21:31:44 +02:00
|
|
|
# FFMpeg
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded FFMpeg ] {
|
2013-07-05 10:51:42 +02:00
|
|
|
local packages = ffmpeg speex libtheora libvorbis libogg libvpx ;
|
|
|
|
AddHaikuImagePackages $(packages) ;
|
2013-06-13 21:31:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# FFMpeg-devel
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded FFMpeg-devel ] {
|
2013-07-05 10:51:42 +02:00
|
|
|
local packages = ffmpeg speex libtheora libvorbis libogg libvpx ;
|
|
|
|
AddHaikuImagePackages $(packages)_devel ;
|
2013-06-13 22:06:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-05 10:51:42 +02:00
|
|
|
# Git
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded Git ] {
|
|
|
|
AddHaikuImagePackages git git_arch git_cvs git_daemon git_email git_svn ;
|
2010-04-13 21:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-05 10:51:42 +02:00
|
|
|
# NetFS network file system
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded NetFS ] {
|
|
|
|
# TODO: Make this an actual package!
|
|
|
|
# # userlandfs module
|
|
|
|
# AddFilesToHaikuImage home config add-ons userlandfs
|
|
|
|
# : netfs ;
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# # servers
|
|
|
|
# AddFilesToHaikuImage system servers : netfs_server ;
|
|
|
|
# AddFilesToHaikuImage system servers
|
|
|
|
# : authentication_server ;
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# # tools
|
|
|
|
# AddFilesToHaikuImage system bin : netfs_config ;
|
|
|
|
# AddFilesToHaikuImage system bin : netfs_server_prefs ;
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# #example settings for netfs_server
|
|
|
|
# local netfsServerSettingsFiles = <driver-settings>netfs-server ;
|
|
|
|
# SEARCH on $(netfsServerSettingsFiles)
|
|
|
|
# = [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems netfs ] ;
|
|
|
|
# AddFilesToHaikuImage home config settings kernel drivers
|
|
|
|
# : $(netfsServerSettingsFiles) ;
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# #userlandfs settings are needed for netfs_config to work (ioctls)
|
|
|
|
# local userlandfsServerSettingsFiles = <driver-settings>userlandfs ;
|
|
|
|
# SEARCH on $(userlandfsServerSettingsFiles)
|
|
|
|
# = [ FDirName $(HAIKU_TOP) src add-ons kernel file_systems userlandfs ] ;
|
|
|
|
# AddFilesToHaikuImage home config settings kernel drivers
|
|
|
|
# : $(userlandfsServerSettingsFiles) ;
|
2010-05-06 05:48:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-05 10:51:42 +02:00
|
|
|
# UserlandFS
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded UserlandFS ] {
|
|
|
|
# TODO: Make this an actual package!
|
|
|
|
# local arch = $(TARGET_ARCH) ;
|
2013-08-01 08:51:16 +02:00
|
|
|
# local abi = gcc$(TARGET_GCC_VERSION_$(TARGET_PACKAGING_ARCH)[1]) ;
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# # kernel module
|
|
|
|
# AddFilesToHaikuImage system add-ons kernel file_systems
|
|
|
|
# : userlandfs ;
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# # server
|
|
|
|
# AddFilesToHaikuImage system servers : userlandfs_server ;
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# # libs
|
|
|
|
# local userlandfsLibs =
|
|
|
|
# libuserlandfs_beos_kernel.so
|
|
|
|
# libuserlandfs_haiku_kernel.so
|
|
|
|
# libuserlandfs_fuse.so
|
|
|
|
# ;
|
|
|
|
# AddFilesToHaikuImage system lib : $(userlandfsLibs) ;
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# # development goodies
|
|
|
|
# if [ IsOptionalHaikuImagePackageAdded DevelopmentMin ] {
|
2013-08-01 08:51:16 +02:00
|
|
|
# if ! ( $(TARGET_GCC_VERSION_$(TARGET_PACKAGING_ARCH)[1]) in 2 4 ) {
|
2013-07-05 10:51:42 +02:00
|
|
|
# Exit "Optional package UserlandFS: Unsupported GCC version:"
|
2013-08-01 08:51:16 +02:00
|
|
|
# $(TARGET_GCC_VERSION_$(TARGET_PACKAGING_ARCH)[1]) ;
|
2013-07-05 10:51:42 +02:00
|
|
|
# }
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# # library symlinks
|
|
|
|
# local lib ;
|
|
|
|
# for lib in $(userlandfsLibs) {
|
|
|
|
# AddSymlinkToHaikuImage develop abi $(arch) $(abi) lib
|
|
|
|
# : /system/lib/$(lib:BS) ;
|
|
|
|
# }
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# # FUSE headers
|
|
|
|
# local fuseHeaders =
|
|
|
|
# fuse_common_compat.h
|
|
|
|
# fuse_common.h
|
|
|
|
# fuse_compat.h
|
|
|
|
# fuse.h
|
|
|
|
# fuse_lowlevel_compat.h
|
|
|
|
# fuse_lowlevel.h
|
|
|
|
# fuse_opt.h
|
|
|
|
# ;
|
|
|
|
# fuseHeaders = $(fuseHeaders:G=userlandfs!fuse) ;
|
|
|
|
# SEARCH on $(fuseHeaders)
|
|
|
|
# = [ FDirName $(HAIKU_TOP) headers private userlandfs fuse ] ;
|
|
|
|
# AddFilesToHaikuImage develop headers userlandfs fuse : $(fuseHeaders) ;
|
|
|
|
# }
|
2013-06-13 15:08:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-05 10:51:42 +02:00
|
|
|
# WebPositive
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded WebPositive ] {
|
2013-08-10 15:06:55 +02:00
|
|
|
local architectureObject ;
|
|
|
|
for architectureObject in [ MultiArchSubDirSetup ] {
|
|
|
|
on $(architectureObject) {
|
|
|
|
if [ FIsBuildFeatureEnabled webpositive ] {
|
2013-10-09 03:47:28 +02:00
|
|
|
AddPackageFilesToHaikuImage system : webpositive.hpkg
|
|
|
|
: nameFromMetaInfo ;
|
2013-08-10 15:06:55 +02:00
|
|
|
InstallOptionalHaikuImagePackage
|
2014-01-01 18:52:55 +01:00
|
|
|
$(baseURL)/WebPositiveBookmarks-2014-01-01.zip
|
2013-08-10 15:06:55 +02:00
|
|
|
: home config settings WebPositive ;
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-13 18:46:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-05 10:51:42 +02:00
|
|
|
# Welcome
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded Welcome ] {
|
2013-10-09 03:47:28 +02:00
|
|
|
AddPackageFilesToHaikuImage system : haiku_userguide.hpkg
|
|
|
|
: nameFromMetaInfo ;
|
|
|
|
AddPackageFilesToHaikuImage system : haiku_welcome.hpkg : nameFromMetaInfo ;
|
2013-06-13 18:46:34 +02:00
|
|
|
|
2013-07-05 10:51:42 +02:00
|
|
|
AddSymlinkToHaikuImage home Desktop : /boot/system/bin/welcome
|
|
|
|
: Welcome ;
|
|
|
|
AddSymlinkToHaikuImage home Desktop : /boot/system/bin/userguide
|
|
|
|
: User\ Guide ;
|
2008-10-04 18:28:15 +00:00
|
|
|
}
|
2008-03-29 15:18:35 +00:00
|
|
|
|
2009-12-31 20:39:27 +00:00
|
|
|
|
2010-02-27 18:42:54 +00:00
|
|
|
# WifiFirmwareScriptData
|
|
|
|
# This optional package is for people who build their own images & have wifi
|
|
|
|
# hardware that requires install-wifi-firmwares.sh & have no active network
|
|
|
|
# connection. This is not to be added to default images.
|
|
|
|
if [ IsOptionalHaikuImagePackageAdded WifiFirmwareScriptData ] {
|
2013-07-05 10:51:42 +02:00
|
|
|
# TODO: Make this an actual package!
|
|
|
|
# if $(TARGET_ARCH) != x86 {
|
|
|
|
# Echo "No optional package WifiFirmwareScriptData available for"
|
|
|
|
# $(TARGET_ARCH) ;
|
|
|
|
# } else {
|
|
|
|
# # broadcom43xx
|
|
|
|
# # firmware cutter
|
|
|
|
# local broadcomFWCutterArchive = b43-fwcutter-012.tar.bz2 ;
|
|
|
|
# local broadcomFWCutterURL =
|
|
|
|
# http://www.haiku-files.org/files/wifi-firmwares/b43/fwcutter/$(broadcomFWCutterArchive) ;
|
|
|
|
# local broadcomFWCutterFile = [ DownloadFile $(broadcomFWCutterArchive)
|
|
|
|
# : $(broadcomFWCutterURL) ] ;
|
|
|
|
# AddFilesToHaikuImage
|
|
|
|
# system data firmware broadcom43xx b43-fwcutter
|
|
|
|
# : $(broadcomFWCutterFile) ;
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# # headers needed to compile firmware cutter
|
|
|
|
# local glibcDir = [ FDirName
|
|
|
|
# $(HAIKU_TOP) src system libroot posix glibc ] ;
|
|
|
|
# local byteswapHeader = [ FDirName $(glibcDir) string byteswap.h ] ;
|
|
|
|
# AddFilesToHaikuImage
|
|
|
|
# system data firmware broadcom43xx b43-fwcutter
|
|
|
|
# : $(byteswapHeader) ;
|
|
|
|
# local bitByteswapHeader = [ FDirName
|
|
|
|
# $(glibcDir) include arch x86 bits byteswap.h ] ;
|
|
|
|
# AddFilesToHaikuImage
|
|
|
|
# system data firmware broadcom43xx b43-fwcutter bits
|
|
|
|
# : $(bitByteswapHeader) ;
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# # file containing firmware
|
|
|
|
# local broadcom43xxFile ;
|
|
|
|
# broadcom43xxFile = [ DownloadFile wl_apsta-3.130.20.0.o
|
|
|
|
# : http://www.haiku-files.org/files/wifi-firmwares/b43/wl_apsta-3.130.20.0.o ] ;
|
|
|
|
# AddFilesToHaikuImage system data firmware broadcom43xx
|
|
|
|
# : $(broadcom43xxFile) ;
|
2013-11-10 17:14:16 -05:00
|
|
|
#
|
2013-07-05 10:51:42 +02:00
|
|
|
# # marvell88w8335
|
|
|
|
# local marvellArchive = malo-firmware-1.4.tgz ;
|
|
|
|
# local marvellURL = http://www.haiku-files.org/files/wifi-firmwares/marvell/$(marvellArchive) ;
|
|
|
|
# local marvellFile = [ DownloadFile $(marvellArchive) : $(marvellURL) ] ;
|
|
|
|
# AddFilesToHaikuImage system data firmware marvell88w8335
|
|
|
|
# : $(marvellFile) ;
|
|
|
|
# }
|
2013-05-06 04:37:18 +02:00
|
|
|
}
|