]> git.ipfire.org Git - ipfire-2.x.git/blame - src/install+setup/install/hw.h
installer: Remove mountsource.sh
[ipfire-2.x.git] / src / install+setup / install / hw.h
CommitLineData
f0fa1795
MT
1/*#############################################################################
2# #
3# IPFire - An Open Source Firewall Distribution #
4# Copyright (C) 2014 IPFire development team #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19#############################################################################*/
20
21#ifndef HEADER_HW_H
22#define HEADER_HW_H
23
24#include <libudev.h>
25
26#define SOURCE_MOUNT_PATH "/cdrom"
27#define SOURCE_TEST_FILE SOURCE_MOUNT_PATH "/" VERSION ".media"
28
29struct hw {
30 struct udev *udev;
31};
32
33struct hw* hw_init();
34void hw_free(struct hw* hw);
35
36int hw_mount(const char* source, const char* target, int flags);
37int hw_umount(const char* target);
38
39char* hw_find_source_medium(struct hw* hw);
40
41#endif /* HEADER_HW_H */