Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Arch Linux
archiso
Commits
9ca157c1
Commit
9ca157c1
authored
Dec 03, 2011
by
Gerardo Exequiel Pozzi
Browse files
[archiso] archiso_pxe_curl rename to archiso_pxe_http
Signed-off-by:
Gerardo Exequiel Pozzi
<
vmlinuz386@yahoo.com.ar
>
parent
92dbba6c
Changes
6
Hide whitespace changes
Inline
Side-by-side
README
View file @
9ca157c1
...
...
@@ -5,7 +5,7 @@ INDEX
* hooks/archiso
* hooks/archiso_pxe_common
* hooks/archiso_pxe_nbd
* hooks/archiso_pxe_
curl
* hooks/archiso_pxe_
http
* hooks/archiso_pxe_nfs
* hooks/archiso_loop_mnt
* Boot parameters (only for configs/releng)
...
...
@@ -87,7 +87,7 @@ INDEX
Default: (unset)
** hooks/archiso_pxe_
curl
** hooks/archiso_pxe_
http
* archiso_curl_url= Set an HTTP/FTP URL (must end with /) where ${archisobasedir}
is found with all *.sfs files.
...
...
@@ -163,7 +163,7 @@ if nothing is specified on command line.
+ mkinitcpio-nfs-utils for ipconfig
* archiso_pxe_nbd
+ nbd for nbd-client
* archiso_pxe_
curl
* archiso_pxe_
http
+ curl for curl
* archiso_pxe_nfs
+ mkinitcpio-nfs-utils for nfsmount
...
...
archiso/Makefile
View file @
9ca157c1
...
...
@@ -20,8 +20,8 @@ install-hooks:
install
-D
-m
644
install
/archiso_pxe_common
$(DESTDIR)
/lib/initcpio/install/archiso_pxe_common
install
-D
-m
644 hooks/archiso_pxe_nbd
$(DESTDIR)
/lib/initcpio/hooks/archiso_pxe_nbd
install
-D
-m
644
install
/archiso_pxe_nbd
$(DESTDIR)
/lib/initcpio/install/archiso_pxe_nbd
install
-D
-m
644 hooks/archiso_pxe_
curl
$(DESTDIR)
/lib/initcpio/hooks/archiso_pxe_
curl
install
-D
-m
644
install
/archiso_pxe_
curl
$(DESTDIR)
/lib/initcpio/install/archiso_pxe_
curl
install
-D
-m
644 hooks/archiso_pxe_
http
$(DESTDIR)
/lib/initcpio/hooks/archiso_pxe_
http
install
-D
-m
644
install
/archiso_pxe_
http
$(DESTDIR)
/lib/initcpio/install/archiso_pxe_
http
install
-D
-m
644 hooks/archiso_pxe_nfs
$(DESTDIR)
/lib/initcpio/hooks/archiso_pxe_nfs
install
-D
-m
644
install
/archiso_pxe_nfs
$(DESTDIR)
/lib/initcpio/install/archiso_pxe_nfs
install
-D
-m
644 hooks/archiso_loop_mnt
$(DESTDIR)
/lib/initcpio/hooks/archiso_loop_mnt
...
...
@@ -50,8 +50,8 @@ uninstall:
rm
-f
$(DESTDIR)
/lib/initcpio/install/archiso_pxe_common
rm
-f
$(DESTDIR)
/lib/initcpio/hooks/archiso_pxe_nbd
rm
-f
$(DESTDIR)
/lib/initcpio/install/archiso_pxe_nbd
rm
-f
$(DESTDIR)
/lib/initcpio/hooks/archiso_pxe_
curl
rm
-f
$(DESTDIR)
/lib/initcpio/install/archiso_pxe_
curl
rm
-f
$(DESTDIR)
/lib/initcpio/hooks/archiso_pxe_
http
rm
-f
$(DESTDIR)
/lib/initcpio/install/archiso_pxe_
http
rm
-f
$(DESTDIR)
/lib/initcpio/hooks/archiso_pxe_nfs
rm
-f
$(DESTDIR)
/lib/initcpio/install/archiso_pxe_nfs
rm
-f
$(DESTDIR)
/lib/initcpio/hooks/archiso_loop_mnt
...
...
archiso/hooks/archiso_pxe_
curl
→
archiso/hooks/archiso_pxe_
http
View file @
9ca157c1
...
...
@@ -6,7 +6,7 @@ run_hook() {
archiso_curl_url
=
$(
eval echo
${
archiso_curl_url
}
)
[[
-z
"
${
curlspace_size
}
"
]]
&&
curlspace_size
=
"75%"
mount_handler
=
"archiso_pxe_
curl
_mount_handler"
mount_handler
=
"archiso_pxe_
http
_mount_handler"
fi
}
...
...
@@ -27,7 +27,7 @@ _curl_get() {
fi
}
archiso_pxe_
curl
_mount_handler
()
{
archiso_pxe_
http
_mount_handler
()
{
newroot
=
"
${
1
}
"
msg
":: Mounting /run/archiso/curlspace (tmpfs) filesystem, size='
${
curlspace_size
}
'"
...
...
archiso/install/archiso_pxe_
curl
→
archiso/install/archiso_pxe_
http
View file @
9ca157c1
...
...
@@ -5,7 +5,7 @@ build ()
MODULES
=
""
BINARIES
=
""
FILES
=
""
SCRIPT
=
"archiso_pxe_
curl
"
SCRIPT
=
"archiso_pxe_
http
"
add_binary
"/usr/bin/curl"
}
...
...
configs/releng/build.sh
View file @
9ca157c1
...
...
@@ -28,7 +28,7 @@ make_packages() {
make_setup_mkinitcpio
()
{
if
[[
!
-e
${
work_dir
}
/build.
${
FUNCNAME
}
]]
;
then
local
_hook
for
_hook
in
archiso archiso_shutdown archiso_pxe_common archiso_pxe_nbd archiso_pxe_
curl
archiso_pxe_nfs archiso_loop_mnt
;
do
for
_hook
in
archiso archiso_shutdown archiso_pxe_common archiso_pxe_nbd archiso_pxe_
http
archiso_pxe_nfs archiso_loop_mnt
;
do
cp
/lib/initcpio/hooks/
${
_hook
}
${
work_dir
}
/root-image/lib/initcpio/hooks
cp
/lib/initcpio/install/
${
_hook
}
${
work_dir
}
/root-image/lib/initcpio/install
done
...
...
configs/releng/mkinitcpio.conf
View file @
9ca157c1
HOOKS
=
"base udev memdisk archiso_shutdown archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_
curl
archiso_pxe_nfs archiso_kms pata scsi sata virtio usb fw pcmcia filesystems usbinput"
HOOKS
=
"base udev memdisk archiso_shutdown archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_
http
archiso_pxe_nfs archiso_kms pata scsi sata virtio usb fw pcmcia filesystems usbinput"
COMPRESSION
=
"xz"
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment