source: client/shared/lib/os-probes/mounted/10qnx @ 38788bf

webconsole3
Last change on this file since 38788bf was 1236d17, checked in by jm.bardallo <juanmanuel.bardallo@…>, 7 years ago

añadidos nuevamente los ficheros de opengnsys del branch devel, se habían quitado por error

  • Property mode set to 100644
File size: 390 bytes
Line 
1#!/bin/sh
2
3. /usr/share/os-prober/common.sh
4
5partition="$1"
6mpoint="$2"
7type="$3"
8
9# Weed out stuff that doesn't apply to us
10case "$type" in
11        qnx4) debug "$partition is a QNX4 partition" ;;
12        *) debug "$partition is not a QNX4 partition: exiting"; exit 1 ;;
13esac
14
15if [ -e "$mpoint/.boot" ]; then
16        label="$(count_next_label QNX)"
17        result "$partition:QNX:$label:chain"
18        exit 0
19else
20        exit 1
21fi
Note: See TracBrowser for help on using the repository browser.