#!/bin/sh
# Copyright 2010 Vertical Communications
# Copyright 2012 OpenWrt.org
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
fsck_e2fsck() {
set -o pipefail
e2fsck -p "$device" 2>&1 | logger -t "fstab: e2fsck ($device)"
local status="$?"
set +o pipefail
case "$status" in
0|1) ;; #success
2) reboot;;
4) echo "e2fsck ($device): Warning! Uncorrected errors."| logger -t fstab
return 1
;;
*) echo "e2fsck ($device): Error $status. Check not complete."| logger -t fstab;;
esac
return 0
}
fsck_ext2() {
fsck_e2fsck "$@"
}
fsck_ext3() {
fsck_e2fsck "$@"
}
fsck_ext4() {
fsck_e2fsck "$@"
}
append libmount_known_fsck "ext2"
append libmount_known_fsck "ext3"
append libmount_known_fsck "ext4"
: openwrt/upstream
blob: a7fd9a26190cb26a71fc68bd5839a7f6ee7e42d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#
# Copyright (C) 2009 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define Profile/UBNTRS
NAME:=Ubiquiti RouterStation
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2
endef
define Profile/UBNTRS/Description
Package set optimized for the Ubiquiti RouterStation.
endef
$(eval $(call Profile,UBNTRS))
define Profile/UBNTRSPRO
NAME:=Ubiquiti RouterStation Pro
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2
endef
define Profile/UBNTRSPRO/Description
Package set optimized for the Ubiquiti RouterStation Pro.
endef
$(eval $(call Profile,UBNTRSPRO))
define Profile/UBNT
NAME:=Ubiquiti Products
PACKAGES:=kmod-usb-core kmod-usb-ohci kmod-usb2
endef
define Profile/UBNT/Description
Build images for all Ubiquiti products (including LS-SR71, RouterStation and RouterStation Pro)
endef
$(eval $(call Profile,UBNT))
|