Linux Sound Documentation

Total Page:16

File Type:pdf, Size:1020Kb

Linux Sound Documentation Linux Sound Documentation The kernel development community Jul 14, 2020 CONTENTS i ii CHAPTER ONE ALSA KERNEL API DOCUMENTATION 1.1 The ALSA Driver API 1.1.1 Management of Cards and Devices Card Management void snd_device_initialize(struct device * dev, struct snd_card * card) Initialize struct device for sound devices Parameters struct device * dev device to initialize struct snd_card * card card to assign, optional int snd_card_new(struct device * parent, int idx, const char * xid, struct mod- ule * module, int extra_size, struct snd_card ** card_ret) create and initialize a soundcard structure Parameters struct device * parent the parent device object int idx card index (address) [0 ⋯(SNDRV_CARDS-1)] const char * xid card identification (ASCII string) struct module * module top level module for locking int extra_size allocate this extra size after the main soundcard structure struct snd_card ** card_ret the pointer to store the created card instance Creates and initializes a soundcard structure. The function allocates snd_card instance via kzalloc with the given space for the driver to use freely. The allocated struct is stored in the given card_ret pointer. Return Zero if successful or a negative error code. struct snd_card * snd_card_ref(int idx) Get the card object from the index Parameters 1 Linux Sound Documentation int idx the card index Description Returns a card object corresponding to the given index or NULL if not found. Release the object via snd_card_unref(). int snd_card_disconnect(struct snd_card * card) disconnect all APIs from the file-operations (user space) Parameters struct snd_card * card soundcard structure Disconnects all APIs from the file-operations (user space). Return Zero, otherwise a negative error code. Note The current implementation replaces all active file->f_op with special dummy file operations (they do nothing except release). void snd_card_disconnect_sync(struct snd_card * card) disconnect card and wait until files get closed Parameters struct snd_card * card card object to disconnect Description This calls snd_card_disconnect() for disconnecting all belonging components and waits until all pending files get closed. It assures that all accesses from user-space finished so that the driver can release its resources gracefully. int snd_card_free_when_closed(struct snd_card * card) Disconnect the card, free it later eventually Parameters struct snd_card * card soundcard structure Description Unlike snd_card_free(), this function doesn’t try to release the card resource im- mediately, but tries to disconnect at first. When the card is still in use, the function returns before freeing the resources. The card resources will be freed when the refcount gets to zero. int snd_card_free(struct snd_card * card) frees given soundcard structure Parameters struct snd_card * card soundcard structure Description This function releases the soundcard structure and the all assigned devices auto- matically. That is, you don’t have to release the devices by yourself. 2 Chapter 1. ALSA Kernel API Documentation Linux Sound Documentation This function waits until the all resources are properly released. Return Zero. Frees all associated devices and frees the control interface associated to given soundcard. void snd_card_set_id(struct snd_card * card, const char * nid) set card identification name Parameters struct snd_card * card soundcard structure const char * nid new identification string This function sets the card identification and checks for name collisions. int snd_card_add_dev_attr(struct snd_card * card, const struct at- tribute_group * group) Append a new sysfs attribute group to card Parameters struct snd_card * card card instance const struct attribute_group * group attribute group to append int snd_card_register(struct snd_card * card) register the soundcard Parameters struct snd_card * card soundcard structure This function registers all the devices assigned to the soundcard. Until calling this, the ALSA control interface is blocked from the external accesses. Thus, you should call this function at the end of the initialization of the card. Return Zero otherwise a negative error code if the registration failed. int snd_component_add(struct snd_card * card, const char * component) add a component string Parameters struct snd_card * card soundcard structure const char * component the component id string This function adds the component id string to the supported list. The compo- nent can be referred from the alsa-lib. Return Zero otherwise a negative error code. int snd_card_file_add(struct snd_card * card, struct file * file) add the file to the file list of the card Parameters struct snd_card * card soundcard structure 1.1. The ALSA Driver API 3 Linux Sound Documentation struct file * file file pointer This function adds the file to the file linked-list of the card. This linked-list is used to keep tracking the connection state, and to avoid the release of busy resources by hotplug. Return zero or a negative error code. int snd_card_file_remove(struct snd_card * card, struct file * file) remove the file from the file list Parameters struct snd_card * card soundcard structure struct file * file file pointer This function removes the file formerly added to the card via snd_card_file_add() function. If all files are removed and snd_card_free_when_closed() was called beforehand, it processes the pending release of resources. Return Zero or a negative error code. int snd_power_wait(struct snd_card * card, unsigned int power_state) wait until the power-state is changed. Parameters struct snd_card * card soundcard structure unsigned int power_state expected power state Waits until the power-state is changed. Return Zero if successful, or a negative error code. Device Components int snd_device_new(struct snd_card * card, enum snd_device_type type, void * device_data, const struct snd_device_ops * ops) create an ALSA device component Parameters struct snd_card * card the card instance enum snd_device_type type the device type, SNDRV_DEV_XXX void * device_data the data pointer of this device const struct snd_device_ops * ops the operator table Description Creates a new device component for the given data pointer. The device will be assigned to the card and managed together by the card. 4 Chapter 1. ALSA Kernel API Documentation Linux Sound Documentation The data pointer plays a role as the identifier, too, so the pointer address must be unique and unchanged. Return Zero if successful, or a negative error code on failure. void snd_device_disconnect(struct snd_card * card, void * device_data) disconnect the device Parameters struct snd_card * card the card instance void * device_data the data pointer to disconnect Description Turns the device into the disconnection state, invoking dev_disconnect callback, if the device was already registered. Usually called from snd_card_disconnect(). Return Zero if successful, or a negative error code on failure or if the device not found. void snd_device_free(struct snd_card * card, void * device_data) release the device from the card Parameters struct snd_card * card the card instance void * device_data the data pointer to release Description Removes the device from the list on the card and invokes the callbacks, dev_disconnect and dev_free, corresponding to the state. Then release the device. int snd_device_register(struct snd_card * card, void * device_data) register the device Parameters struct snd_card * card the card instance void * device_data the data pointer to register Description Registers the device which was already created via snd_device_new(). Usually this is called from snd_card_register(), but it can be called later if any new devices are created after invocation of snd_card_register(). Return Zero if successful, or a negative error code on failure or if the device not found. int snd_device_get_state(struct snd_card * card, void * device_data) Get the current state of the given device Parameters 1.1. The ALSA Driver API 5 Linux Sound Documentation struct snd_card * card the card instance void * device_data the data pointer to release Description Returns the current state of the given device object. For the valid device, either SNDRV_DEV_BUILD, SNDRV_DEV_REGISTERED or SNDRV_DEV_DISCONNECTED is returned. Or for a non-existing device, -1 is returned as an error. Module requests and Device File Entries void snd_request_card(int card) try to load the card module Parameters int card the card number Description Tries to load the module “snd-card-X”for the given card number via re- quest_module. Returns immediately if already loaded. void * snd_lookup_minor_data(unsigned int minor, int type) get user data of a registered device Parameters unsigned int minor the minor number int type device type (SNDRV_DEVICE_TYPE_XXX) Description Checks that a minor device with the specified type is registered, and returns its user data pointer. This function increments the reference counter of the card instance if an associ- ated instance with the given minor number and type is found. The caller must call snd_card_unref() appropriately later. Return The user data pointer if the specified device is found. NULL otherwise. int snd_register_device(int type, struct snd_card * card, int dev, const struct file_operations * f_ops, void * private_data, struct device * device) Register the ALSA device file for the card Parameters int type the device type, SNDRV_DEVICE_TYPE_XXX struct snd_card * card the card instance int dev the device index const struct file_operations * f_ops the file
Recommended publications
  • Linux Sound Subsystem Documentation Release 4.13.0-Rc4+
    Linux Sound Subsystem Documentation Release 4.13.0-rc4+ The kernel development community Sep 05, 2017 CONTENTS 1 ALSA Kernel API Documentation 1 1.1 The ALSA Driver API ............................................ 1 1.2 Writing an ALSA Driver ........................................... 89 2 Designs and Implementations 145 2.1 Standard ALSA Control Names ...................................... 145 2.2 ALSA PCM channel-mapping API ..................................... 147 2.3 ALSA Compress-Offload API ........................................ 149 2.4 ALSA PCM Timestamping ......................................... 152 2.5 ALSA Jack Controls ............................................. 155 2.6 Tracepoints in ALSA ............................................ 156 2.7 Proc Files of ALSA Drivers ......................................... 158 2.8 Notes on Power-Saving Mode ....................................... 161 2.9 Notes on Kernel OSS-Emulation ..................................... 161 2.10 OSS Sequencer Emulation on ALSA ................................... 165 3 ALSA SoC Layer 171 3.1 ALSA SoC Layer Overview ......................................... 171 3.2 ASoC Codec Class Driver ......................................... 172 3.3 ASoC Digital Audio Interface (DAI) .................................... 174 3.4 Dynamic Audio Power Management for Portable Devices ...................... 175 3.5 ASoC Platform Driver ............................................ 180 3.6 ASoC Machine Driver ............................................ 181 3.7 Audio Pops
    [Show full text]
  • Auzentech Vista Installation Instructions
    SOUND CARD COMPARISON CHART, 2 of 2 Sound Blaster® AUZEN AUZEN X-Fi Xtreme Gamer X-MERIDIAN 7.1 X-Fi™ Prelude 7.1 FATAL1TY Pro Audio Processor CMI8788 X-Fi™(20K1) X-Fi™(20K1) Signal to Noise Ratio (SNR) 115dB 115dB 109dB 64 RAM - Yes Yes 64bit OS support Yes Yes Yes Max. No. of 3D Voices 128 128 128 Max. Audio Resolution 24-bit/192kHz in 2ch Stereo 24-bit/192kHz in 2ch Stereo 24-bit/192kHz in 7.1 Playback & Quality 24-bit/96kHz in 7.1 24-bit/96kHz in 7.1 Max. Recording/Sampling Rate 24-bit/192kHz 24-bit/96kHz 24-bit/96kHz 24-bit/192kHz AK4396VF 24-bit/96kHz AK4396VF DAC(s) 24-bit/96kHz (120dB-part spec.) X 4pcs (120dB-part spec.) X 4pcs 24-bit/192kHz AK5385BVF 24-bit/96kHz AK5394AVS ADC 24-bit/96kHz (114dB-part spec.) X 1pc (123dB-part spec.) X 1pc 4 pcs / Dual DIP type / 1 pc / Dual DIP type / OPAMP Swappable design for DIY, Swappable design for Front SMD type (Preout circuit for DAC output) final sound quality and color (LM4562), managed by OPAMP 3 pcs / SMD type (OPA2134) Digitally-controlled analog switch for relay switching noise removal Relay Switching Noise Free NA NA User tuning available for high quality sound OPAMP 2 pcs / SMD type 2 pcs / SMD type SMD type (preinput circuit for ADC input) OPAMP 1 pc / SMD type 1 pc / SMD type SMD type (preinput circuit for MIC input) Max Output level 5 Vrms / Powerful sound 5 Vrms / Powerful sound 2.0Vrms EAX® / DirectSound 3D Yes / EAX 2.0 Yes / EAX 5.0 Yes / EAX 5.0 Max.
    [Show full text]
  • ICT & Education Specialist the World Bank
    People and Technology in World Class Education Systems News, perspectives and challenges from developing countries Michael Trucano Sr. ICT & Education Specialist The World Bank EMINENT Rome, Italy 4 December 2008 drawing on Lessons from the World Bank and the International Donor Community What we know and what we don’t about using technology in education in developing countries What we know and what we don’t about using technology effectively in education in developing countries (and how might this be relevant for Europe) ? “I believe that the Internet is destined to revolutionize our educational system and that in a few years it will supplant largely, if not entirely, the use of textbooks. It is possible to touch every branch of human knowledge through the Internet . “ I believe that the motion picture is destined to revolutionize our educational system and that in a few years it will supplant largely, if not entirely, the use of textbooks. It is possible to touch every branch of human knowledge through the motion picture . -- Thomas Edison 1922 ICTs in Education ICTS radio computers = information TV & Internet communication phones technologies devices photo opportunities or strategic choices for education reform ? Michael Trucano Sr. ICT & Education Specialist The World Bank helping the World Bank education sector and international donor community and ‘client countries’ “Get smart” @ appropriate relevant effective and, just as importantly… in appropriate ir relevant in effective uses of technologies to aid a variety of developmental objectives in the education sector What is the World Bank ? a global development institution owned by > 180 member countries with: – significant financial resources – an experienced, knowledgeable, and dedicated staff – convening power – experts in more than 100 countries.
    [Show full text]
  • Documento Completo
    UNIVERSIDAD AUTÓNOMA DE CIUDAD JUÁREZ Instituto de Ingeniería y Tecnología Departamento de Ingeniería Eléctrica y Computación Caracterización de firewall de alta disponibilidad con filtro de contenido en un ambiente virtualizado. Reporte Técnico de Investigación presentado por: Alejandra Juana Torres Pérez 98709 Lucero Martínez Castrillo 98750 Requisito para la obtención del título de INGENIERO EN SISTEMAS COMPUTACIONALES Profesor Responsable: Mtro. Eduardo Castillo Luna Mayo de 2015 ii iii iv Índice de contenidos Autorización de Impresión…………………………………………………………....¡Error! Marcador no definido. Declaración de Originalidad………………………………………………………….¡Error! Marcador no definido. Lista de Figuras ... ……………………………………………………………………….viii Lista de Tablas .... ………………………………………………………………………..iix Introducción ......…………………………………………………………………………...1 Capítulo 1. Planteamiento del problema ......………………………………………………2 1.1 Antecedentes ......……………………………………………………………………2 1.2 Definición del problema......………………………………………………………...4 1.3 Objetivos de la investigación .....…………………………………………………....4 1.4 Preguntas de investigación.....……………………………………………………....5 1.5 Justificación de la investigación ....………………………………………………....5 1.6 Limitaciones y delimitaciones de la investigación ....……………………………...6 Capítulo 2. Marco Teórico .....……………………………………………………………..7 2.1 Seguridad informática ....……………………………………………………………7 2.1.1 Tipos de Seguridad……………………………………………………………..8 2.1.2 Seguridad en redes de comunicación………………………………………......9 2.2 Firewall ......………………………………………………………………………..10 2.2.1
    [Show full text]
  • Audio You Can Believe Intm
    www.auzentech.com auzen AUDIO YOU CAN BELIEVE INTM PRICING MSRP : $249.99 CODE (EAN / UPC) • EAN : 0859702001347 • UPC : 859702001347 SPECIFICATIONS • Box Size : 23 x 23 x 11(cm) 9 x 9 x 4.33 (Inch) • Box weight : 0.9kgs / 2lbs • Case Count : 10 • Case Size : 48 x 25 x 57(cm) 18.90 x 9.84 x 22.44 (Inch) • Case Weight : 9kgs / 20lbs PART NUMBERS Auzentech : AZT-XFHTHD PLACING ORDERS Auzentech, Inc 2000 Wyatt Dr, Suite 13 Key Features Technical Specifications Santa Clara, CA 95054 Ph 408.727.6212, Fax 408.727.6275 • Support high bit rate audio such as Dolby ® True-HD and HDMI e-mail : [email protected] DTS-HD Master Audio™ in bitstream • Video www.auzentech.com • Support Advanced HDMI 1.3 HD audio pass-through - Supports deep color 30/36-bit color depth • Support PCM 8ch 24bit/192Khz - Resolutions up to 1080p @ 60Hz or 720p/1080i @ BASIC REQUIREMENTS • Support Blu-Ray via Cyberlink’s PowerDVD latest application 120Hz • Non-downsampled Blu-ray HD Audio - Color space conversion between RGB, YCbCr 4:4:4 • Intel® Pentium® 4 1.6 GHz or AMD® Athlon • PCI Express compliant and 4:2:2 or equivalent processor, 1.6GHz or faster - CEA-861D Video resolution(DTV) • Support for Dolby Digital Live for Windows XP and Vista, and • Microsoft® Windows® Vista 32/64-bit with DTS Neo:PC & DTS Interactive for Vista • Audio Service Pack 1 (SP1), Windows XP® Profes- • New Creative X-Fi 20k2 Audio Processor - Supports IEC60958 2-channel PCM or IEC61937 sional x32/64 Edition, Windows XP® with compressed audio (Dolby Digital, DTS, etc.) • 64Mbytes of memory for audio
    [Show full text]
  • Računarski Hardver
    Robert Pap Računarski hardver Skripta Za prvi razred elektrotehničke škole (za obrazovni profil administrator računarskih mreža) i drugi razred elektrotehničke škole (za obrazovni profil elektrotehničar informacionih tehnologija) 2015 PREDGOVOR 3 Predgovor Svet računarskog hardvera je oblast izuzetne lepote, ali i kompleksnosti. Sama oblast nije suviše stara, iz prostog razloga što ni svet samih računara nije stara. Međutim, može se smatrati da je računarski hardver za vreme ovog kratkog perioda toliko evoluirao, da zaista mali broj drugih oblasti može da se pohvali ovakvim rezultatima. Jednostavno rečeno, svet računara napreduje takvom brzinom da nešto, što bismo danas zvali najnovijom tehnologijom, za godinu ili dve će već biti okarakterisana kao „prethodna“ tehnologija (mada ne treba ni preterivati, neće se reći da je reč o „staroj“ tehnologiji). Zato napisati bilo šta iz sveta računara (bilo da je reč o hardveru ili softveru) predstavlja izazov iz više razloga. Pre svega, treba biti u toku sa današnjim dešavanjima, ali svaku novu tehnologiju treba gledati i sa dozom rezerve, budući da praktično svaka tehnologija ima svoju konkurenciju. Kratko rečeno, skoro niko ne želi da čita o već prevaziđenim stvarima, ali ne želi da čita ni o tim stvarima koje nikad neće zaživeti. Nastavni predmet Računarski hardver za prvi razred elektrotehničke škole za obrazovni profil administrator računarskih mreža, kao i za drugi razred elektrotehničke škole za obrazovni profil elektrotehničar informacionih tehnologija, predstavlja jedan izuzetan pokušaj revidiranja nastavnog gradiva u odnosu na prethodne nastavne predmete iz oblasti hardvera. Naime, umesto da učenici srednjih škola uče (često vrlo komplikovane) tehničke detalje o računarskim komponentama, fokus se sad stavlja na dobijanje jednog sveobuhvatnog znanja iz ove oblasti, fokusirajući se na svakodnevne probleme.
    [Show full text]
  • Porting RT-Preempt to Loongson2f
    Porting RT-preempt to Loongson2F Wu Zhangjin, Nicholas Mc Guire Distributed & Embedded System Lab, SISE, Lanzhou University, China Tianshui South Road 222,Lanzhou,P.R.China [email protected], [email protected] Abstract Loonsong2F, is a MIPS compatible single core CPU, it is a low-power, mid-range performance proces- sor and therefore suitable for industrial usage. This paper focus on the effort of porting the RT-preempt extension of Linux to this processor based platform(FuLoong2F). we will briefly introduce the features of this platform, and outline the motivation of selecting RT-preempt, and then discuss the technical issues of porting RT-preempt to a new architecture, and describe the specifics of the platform. Further we cover the non-technical issues of how to integrate such work into mainstream development, and finally present some preliminary benchmark results based on community tool (notably cyclictest). KeyWords: RT-preempt, Loongson, Real Time, Linux, industrial applications 1 Introduction The 2nd generation of CPUs from Loongson[5] de- signed by ICT,CAS in China is currently at the 2F release, with the 2G to be expected this year. This MIPS compatible single core CPU is a low- power, mid-range performance CPU primarily tar- geting desktop and net-books. The features are listed in table 1. CPU Core Frequency 800MHz-1GHz Power Consumption 4 Watt. Power Management scalable cpu frequency Built-in North bridge,DDR2 Controller FIGURE 1: FuLoong(2F) Mini PC TABLE 1: Main features of Loongson2F Due to its low power-consumption, fan-less op- eration and integration in form-factors suitable for The FuLoong(2F)[6] Mini PC made by Lemote, industrial usage, we have been working on porting as a Loongson2F based machine, the total power con- suitable RTOS to it, the primary targets for this ef- sumption is only 10 watt which ensures quiet opera- fort have been the XtratuM hypervisor and mainline tion, and With small size (190x145x37mm) and light RT-preempt[7].
    [Show full text]
  • Free Freedom
    Why gNewSense? Why Freedom? Freedom does not come Free software, or Free without effort and it's easy software libre, is a matter as in to backslide. of the freedom to run, Freedom Some distros install copy, distribute, study, change and improve the ● increasing amounts of software. proprietary software by default ● proprietary kernel drivers Problems with security, portability and maintenance go hand in hand with proprietary Whose Freedom? components. a completely free We were the first distro Yours. software distribution to remove the GLX Software is a tool and built on encumberance, which had freedom is necessary to the GNU operating been ignored for years. make that tool useful. system We put our emphasis on and freedom for you, the the Linux kernel user, so that middlemen cannot take it away. www.gnewsense.org gNewSense was started Freedom Matters? to provide a software distribution without sourceless, binary blobs in the kernel. 64-bit computing run the program for any purpose 64-bit computing is possible, BLOBS? too, using either AMD64 or More important than ever, MIPS. What's wrong until the the threat of with blobs lacking source? software patents is ☹ correctness cannot be resolved. MIPS is used anywhere checked from supercomputers down study how the program to embedded devices. ☹ security code works and improve it Recently new computer audit impossible Customize your tools of series and netbooks using ☹ vendors or others can trade. Improve your MIPS have become easily hide backdoors and knowledge, improve your available, such as those spyware in the blob software. from the vendors Lemote and Gdium ☹ complete dependence on redistribute copies a single vendor: The marginal cost for re- AMD64 is very common in ☹ bugs or vulnerabilities distribution of software is off-the-shelf, consumer- cannot be repaired zero.
    [Show full text]
  • Rank Downloads Q3-2017 Active Platforms Q3-2017 1 HP
    Rank Brand Downloads Q3-2017 Active platforms q3-2017 Downloads y-o-y 1 HP 303,669,763 2,219 99% 2 Lenovo 177,100,074 1,734 68% 3 Philips 148,066,292 1,507 -24% 4 Apple 103,652,437 829 224% 5 Acer 100,460,511 1,578 58% 6 Samsung 82,907,164 1,997 72% 7 ASUS 82,186,318 1,690 86% 8 DELL 80,294,620 1,473 77% 9 Fujitsu 57,577,946 1,099 94% 10 Hewlett Packard Enterprise 57,079,300 787 -10% 11 Toshiba 49,415,280 1,375 41% 12 Sony 42,057,231 1,354 37% 13 Canon 27,068,023 1,553 17% 14 Panasonic 25,311,684 601 34% 15 Hama 24,236,374 394 213% 15 BTI 23,297,816 178 338% 16 3M 20,262,236 712 722% 17 Microsoft 20,018,316 639 -11% 18 Bosch 20,015,141 516 170% 19 Lexmark 19,125,788 1,067 104% 20 MSI 18,004,192 545 74% 21 IBM 17,845,288 886 39% 22 LG 16,643,142 734 89% 23 Cisco 16,487,896 520 23% 24 Intel 16,425,029 1,289 73% 25 Epson 15,675,105 629 23% 26 Xerox 15,181,934 1,030 86% 27 C2G 14,827,411 568 167% 28 Belkin 14,129,899 440 43% 29 Empire 13,633,971 128 603% 30 AGI 13,208,149 189 345% 31 QNAP 12,507,977 823 207% 32 Siemens 10,992,227 390 183% 33 Adobe 10,947,315 285 -7% 34 APC 10,816,375 1,066 54% 35 StarTech.com 10,333,843 819 102% 36 TomTom 10,253,360 759 47% 37 Brother 10,246,577 1,344 39% 38 MusicSkins 10,246,462 76 231% 39 Wentronic 9,605,067 305 254% 40 Add-On Computer Peripherals (ACP) 9,360,340 140 334% 41 Logitech 8,822,469 1,318 115% 42 AEG 8,805,496 683 -16% 43 Crocfol 8,570,601 162 268% 44 Panduit 8,567,835 163 452% 45 Zebra 8,198,502 433 72% 46 Memory Solution 8,108,528 128 290% 47 Nokia 7,927,162 402 70% 48 Kingston Technology 7,924,495
    [Show full text]
  • MSY Technology PRICE List – the Name You Can Trust
    MSY Technology PRICE List – The Name You Can Trust - more than 13 years in computer industry WEB SITE: www.msy.com.au 07/07/2010 Price update everyday - Best Quality+Best Services+Best PRICEs+Best Performance Costs you No more –Genuine Best “Hot” PRICEs Offer Everyday Policy & Technicians Serve for your needs– VIC. Malvern Branch (Melway Ref. 68 G1) 117 Waverley Road, East Malvern VIC 3145 TEL:(03) 9572 4411, (03) 9572 5186 Fax:(03)95724022, [email protected] M-F 10:30AM-6:30PM Sat. 10:30AM-2:00PM VIC. Pascoe Vale Branch (Melway Ref. 16 K9) 439 Gaffney Street, Pascoe Vale VIC 3044 TEL:(03) 9379 4677, (03) 9379 4678 Fax:(03)93794622, [email protected] M-F 10:30AM-6:30PM Sat. 10:30AM-2:00PM VIC. Clayton Branch (Mel Ref. 70 K12) 9, 214-224 Wellington Road Clayton VIC 3168 TEL:(03) 9560 2288, (03) 9560 2388 Fax:(03)95602588, [email protected] M-F 10:30AM-6:30PM Sat. 10:30AM-4:00PM VIC. Box Hill Branch (Mel Ref. 47 D10) Suit 1, 2A Cambridge St., Box Hill VIC 3128 TEL:(03) 9897 4833, (03) 9897 4233 Fax:(03)98974433, [email protected] M-F 10:30AM-6:30PM Sat. 10:00AM-5:00PM VIC. Brooklyn Branch (Mel. Ref. 41 B11) 553C Geelong Rd Brooklyn VIC 3012 TEL:(03) 9314 1377, (03) 9314 9155 Fax(03)93140262, [email protected] M-F 10:30AM-6:30PM Sat. 10:30AM-2:00PM VIC. North Melbourne (Mel. Ref. 43 D5, 2A G9) 653 Queensberry St.
    [Show full text]
  • Open Source Software License Information
    Open Source Software license information This document contains an open source software license information for the product VACUU·SELECT. The product VACUU·SELECT contains open source components which are licensed under the applicable open source licenses. The applicable open source licenses are listed below. The open source software licenses are granted by the respective right holders directly. The open source licenses prevail all other license information with regard to the respective open source software components contained in the product. Modifications of our programs which are linked to LGPL libraries are permitted for the customer's own use and reverse engineering for debugging such modifications. However, forwarding the information acquired during reverse engineering or debugging to third parties is prohibited. Furthermore, it is prohibited to distribute modified versions of our programs. In any case, the warranty for the product VACUU·SELECT will expire, as long as the customer cannot prove that the defect would also occur without these modification. WARRANTY DISCLAIMER THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the applicable licenses for more details. Written offer This product VACUU·SELECT contains software components that are licensed by the holder of the rights as free software, or Open Source software, under GNU General Public License, Versions 2 and 3, or GNU Lesser General Public License, Versions 2.1, or GNU Library General Public License, Version 2, respectively. The source code for these software components can be obtained from us on a data carrier (e.g.
    [Show full text]
  • Than 13 Years in Computer Industry WEB SITE
    MSY Technology PRICE List – The Name You Can Trust - more than 13 years in computer industry WEB SITE: www.msy.com.au 02/02/2010 Price update everyday - Best Quality+Best Services+Best PRICEs+Best Performance Costs you No more –Genuine Best “Hot” PRICEs Offer Everyday Policy & Technicians Serve for your needs– VIC. Malvern Branch (Melway Ref. 68 G1) 117 Waverley Road, East Malvern VIC 3145 TEL:(03) 9572 4411, (03) 9572 5186 Fax:(03)95724022, [email protected] M-F 10:30AM-6:30PM Sat. 10:30AM-2:00PM VIC. Pascoe Vale Branch (Melway Ref. 16 K9) 439 Gaffney Street, Pascoe Vale VIC 3044 TEL:(03) 9379 4677, (03) 9379 4678 Fax:(03)93794622, [email protected] M-F 10:30AM-6:30PM Sat. 10:30AM-2:00PM VIC. Clayton Branch (Mel Ref. 70 K12) 9, 214-224 Wellington Road Clayton VIC 3168 TEL:(03) 9560 2288, (03) 9560 2388 Fax:(03)95602588, [email protected] M-F 10:30AM-6:30PM Sat. 10:30AM-2:00PM VIC. Box Hill Branch (Mel Ref. 47 D10) Suit 1, 2A Cambridge St., Box Hill VIC 3128 TEL:(03) 9897 4833, (03) 9897 4233 Fax:(03)98974433, [email protected] M-F 10:00AM-6:30PM Sat. 10:00AM-3:00PM VIC. Brooklyn Branch (Mel. Ref. 41 B11) 553C Geelong Rd Brooklyn VIC 3012 TEL:(03) 9314 1377,(03) 9314 9155 Fax(03)93140262, [email protected] M-F 10:30AM-6:30PM Sat. 10:30AM-2:00PM VIC. North Melbourne (Mel. Ref. 43 D5, 2A G9) 653 Queensberry St.
    [Show full text]